1
在C中,我可以在一個方法內使用下面的形式。2-dim結構表
void foo() {
struct {
int val;
int color;
string desc;
} ItemMap[] = {
{ 1, 2, "test"},
{ 2, 3, "test"},
}
// process tasks according to ItemMap.
}
如果我想在C#下做同樣的事情,如何實現它?
這確實有幫助!非常感謝你。 – AechoLiu 2011-05-03 05:24:12