2
任何人是否有一個想法,爲什麼我得到這些錯誤:修飾符「XXXX」是不適用於這個項目
The modifier 'static' is not valid for this item
The modifier 'readonly' is not valid for this item
以下代碼的第7行:
using System;
namespace XXX
{
class YYY
{
private static readonly struct ZZZ
{
private int x = 0;
private int y = 0;
private int z = 0;
}
}
}
當我研究此事,我只找到了我不太瞭解的接口的答案,但我只想在我的類中創建一個靜態只讀結構字段。