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

link|improve this question

56% accept rate
feedback

1 Answer

up vote 3 down vote accepted

System.Single and System.Double are the .NET framework names for floating point types. C# float and double map to them just like int and long map to System.Int32 and System.Int64.

link|improve this answer
So i guess you can't control that other that what it is doing. – ChiliYago Dec 6 '10 at 18:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.