如何将列表定义为结构字段?
像这样的东西:
public struct MyStruct
{
public decimal SomeDecimalValue;
public int SomeIntValue;
public List<string> SomeStringList = new List<string> // <<I Mean this one?
}
然后像这样使用该字符串:
Private void UseMyStruct()
{
MyStruct S= new MyStruct();
s.Add("first string");
s.Add("second string");
}
我已经尝试了一些东西,但它们都返回错误并且不起作用。