标签:ref .net 赋值 bsp fit service list flight agent
//第一种
List<FlightRefit> ls = new List<BPMSwebService.FlightRefit>();
ls.Add(new FlightRefit() { Id = 1,Agent="李四" });
ls.Add(new FlightRefit() { Id = 2 });
//第二种
FlightRefit[] fr = new FlightRefit[]{
new FlightRefit{Id=3,Agent="张三"},
new FlightRefit{Id=4}
};
标签:ref .net 赋值 bsp fit service list flight agent
原文地址:http://www.cnblogs.com/chj929555796/p/6278018.html