Possible Duplicate:
Declare a Const ArrayConst字符串陣列
我需要類中的一個常量字符串數組。喜歡的東西
public class some_class_t
{
public const string[] names = new string[4]
{
"alpha", "beta", "gamma", "delta"
};
}
但這種代碼導致錯誤:
A constant 'names' of reference type 'string[]' can only be initialized with null.
我該怎麼辦?
數組是可變的。除非它們爲零,否則它們不能保持不變。 –
聲明爲'readonly' –