這是我希望在列表中插入其實例的類。在不聲明的情況下將對象添加到列表中
public class Abc
{
public int x = 4;
}
列表在程序類中創建。如何在不使用註釋行的情況下將數據插入Abc
類型的列表。一類到一個列表中,而無需創建一個對象
class Program
{
static void Main(string[] args)
{
List<Abc> list = new List<Abc>();
// abc x = new Abc(); without doing this.
list.Add(x); //add data to the list of class type abc
}
}
目的是什麼? –