gpt4 book ai didi

powershell - 使用 New-Object -Property 设置嵌套类的属性

转载 作者:行者123 更新时间:2023-12-04 23:29:26 24 4
gpt4 key购买 nike

假设我在 powershell 脚本中用 C# 定义了以下类:

Add-Type -TypeDefinition @"
public class InnerClass {
int a, b;
public int A { get { return a; } set { a = value; } }
public int B { get { return b; } set { b = value; } }
}
public class SomeClass {
string name;
public string Name { get { return name; } set { name= value; } }
InnerClass numbers;
public InnerClass Numbers { get { return numbers; } set { numbers = value; } }
}
"@

我可以实例化 InnerClass 的实例像这样:
New-Object InnerClass -Property  @{
'A' = 1;
'B' = 2;
}

但是,如果我想实例化 SomeClass并设置 InnerClass 的属性以类似的方式,它失败了。
New-Object SomeClass -Property @{
'Name' = "Justin Dearing";
Numbers = @{
'A' = 1;
'B' = 2;
};
} ;

New-Object : The value supplied is not valid, or the property is read-only. Cha
nge the value, and then try again.
At line:20 char:11
+ New-Object <<<< SomeClass -Property @{
+ CategoryInfo : InvalidData: (:) [New-Object], Exception
+ FullyQualifiedErrorId : InvalidValue,Microsoft.PowerShell.Commands.NewOb
jectCommand



Name : Justin Dearing
Numbers :

有没有设置 SomeClass ,包括 Numbers 的属性在一个 New-Object 语句中?

最佳答案

你不能直接但你可以有内联构造的内部类

New-Object SomeClass -Property @{
'Name' = "Justin Dearing";
'Numbers' = New-Object InnerClass -Property @{
'A' = 1;
'B' = 2;
}
};

关于powershell - 使用 New-Object -Property 设置嵌套类的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7326606/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com