可能重複:
How to initialize array of struct?
Initializing an Array of Structs in C#用來初始化結構數組
C#,Visual Studio 2010中
我要聲明的結構數組並初始化它的同時,但不能得到它的權利 我如何寫入默認初始化一個由結構組成的rray?
下不會去編譯通過,但顯示的是我要存檔
private struct PrgStrTrans_t
{
public int id;
public string name;
public string fname;
}
private PrgStrTrans_t[] PrgStrTrans = { {1, "hello", "there"}, {2, "Fun", thisone"}}
是否有可能在所有的想法?
優秀,工作正常 –