編譯器錯誤 CS0170
使用可能未指派的欄位 'field'
在結構中使用了欄位,但未先加以初始化。 若要解決這個問題,請先判斷哪個欄位未初始化,然後加以初始化,再嘗試存取。 如需初始化結構的詳細資訊,請參閱結構類型。
下列範例會產生 CS0170:
C#
// CS0170.cs
public struct error
{
public int i;
}
public class MyClass
{
public static void Main()
{
error e;
// uncomment the next line to resolve this error
// e.i = 0;
System.Console.WriteLine( e.i ); // CS0170 because
//e.i was never assigned
}
}