控制 cmdlet 定义的属性
我正在创建许多 Powershell cmdlet,并注意到在安装管理单元并执行以下命令后,参数数据类型被列为单个而不是编程的类型(在我的例子中为浮点型)。
get-command -pssnapin myPSSnapin | format-list definition
Definition : Get-Value -Param1<Single> -Param2<Single>
有谁知道我在哪里控制这些值,因为它不会自动选择正确的类型?
谢谢
I am creating a number of Powershell cmdlet's and am noticing that after I install my snap-in and execute the following command the parameter data types are listed as single instead of the types programmed (in my case float).
get-command -pssnapin myPSSnapin | format-list definition
Definition : Get-Value -Param1<Single> -Param2<Single>
Does anyone know where do I control these values since it is not automatically selecting the proper type?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
System.Single
和System.Double
是浮点类型的 .NET 框架名称。 C#float
和double
映射到它们,就像int
和long
映射到System.Int32和<代码>System.Int64。
System.Single
andSystem.Double
are the .NET framework names for floating point types. C#float
anddouble
map to them just likeint
andlong
map toSystem.Int32
andSystem.Int64
.