struct A { public List<int> Signal; } A[] a=new A[8]; void Func() { for(int i=0;i<10;i++) { a[0].Signal.Add(i);//C#异常:未将对象引用设置到对象的实例。 } }