編譯器錯誤 CS1043
必須是 { 或 ;
屬性存取子宣告不正確。 如需詳細資訊,請參閱 Using Properties。
下例會產生 CS1043。
// CS1043.cs
// compile with: /target:library
public class MyClass
{
public int DoSomething
{
get return 1; // CS1043
set {}
}
// OK
public int DoSomething2
{
get { return 1;}
}
}