我有一個局部類的兩個部分:聲明類字段,然後初始化它在另一個
public partial class Class1 : AnotherClass
{
int id;
}
public partial class Class1
{
public void func()
{
//here i need to access the id variable defined in the other part
id = 1; //this instruction raise an error "The name 'id' does not exists in the current context"
}
}
我如何可以訪問的變量?
之外的方法? – Steve
我編輯了標題,希望更好地傳達真正的問題。 – crush
您的實際問題是,爲什麼未初始化的變量需要在另一部分中聲明(即現在它不再是部分)。 – Aphelion