I cannot get/set a static variable inside a method. How can I do it?
public class LoginDialog
{
// class members
private static string _user="" ;
public void RunDialog()
{
_user = "Peter";
}
public static string _User { get; set; }
}
After reading the answers I edit my code and I cant still get the static variable _user. What I am doing wrong?
public class LoginDialog
{
private static string _user;
public void RunDialog()
{
LoginDialog._user = "Peter";
}
public static string _User { get {return _user;} }
}
When I declare like that everything works fine, but rather I would like to declare inside the method.
private static string _user="Peter";
_userand access it through_Userthen that won't work as_Useris currently an auto-property. msdn.microsoft.com/en-us/library/bb384054.aspx – Adam Houldsworth Mar 26 '12 at 14:07