-1

我想在 Computer 类型中声明一个数组,如下面的代码所示

Add-Type @"
public struct Computer {
    public string Name;
    public string ProductName;
    # declare array
}

谢谢!

4

1 回答 1

2

在 C# 中声明字符串数组类型的字段:

public string[] YourArrayName
于 2012-11-05T15:47:08.023 回答