-1
4

1 回答 1

0

通过以下方式创建 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

这是你想要的?

于 2012-05-28T06:23:25.727 回答