Further extending the question:
C# List<object>
public class SampleInformation { public string Nutrie_Stack Overflow中文网
Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
public class SampleInformation { public string Nutrie 问问题
通过以下方式创建 SampleInformation 对象列表:
List<SampleInformation> sampleList = new List<SampleInformation>(); //Creates the list SampleInformation sample = new SampleInformation(); //Your object sampleList.Add(sample); //Add your object to the list
这是你想要的?