我想将.NET对象转换为另一种.NET类型,但是:
-as
PowerShell运算符你将如何实现这一目标?
例如,这是“PowerShell”的方式,但我不想使用-as
:
$TargetType = [System.String]; # The type I want to cast to
1 -as $TargetType; # Cast object as $TargetType
不幸的是,这不起作用:
$TargetType = [System.String];
[$TargetType]1;
..因为在这种情况下,PowerShell不允许在方括号内使用变量。
我想象的是:
$TargetType = [System.String];
$TargetType.Cast(1); # Does something like this exist in the .NET framework?
可以用.NET方法语法完成吗?有没有静态方法可以做到这一点?
答案 0 :(得分:7)
您可以使用以下方法粗略模拟演员表:
[System.Management.Automation.LanguagePrimitives]::ConvertTo($Value, $TargetType)
对于提供自己转换的动态对象,true cast的行为可能与上述方法不同。否则,我能想到的唯一其他差异就是性能 - 由于ConvertTo静态方法中没有优化,真正的强制转换可能会表现得更好。
要精确模拟演员表,您需要使用以下内容生成脚本块:
function GenerateCastScriptBlock
{
param([type]$Type)
[scriptblock]::Create('param($Value) [{0}]$Value' -f
[Microsoft.PowerShell.ToStringCodeMethods]::Type($Type))
}
然后,您可以将此脚本块分配给函数或直接调用它,例如:
(& (GenerateCastScriptBlock ([int])) "42").GetType()