位置:海鸟网 > IT > ASP.NET >

ASP.NET基础教程(四):了解属性与get,set访问器

 经过前面三篇的学习你是不是对ASP.NET有了更深入的了解呢,我们本节再来了解一下属性与get,set访问器的知识。

 

CGs
{
class Program
{
static

, dl.Password);
Console.ReadLine();
}
}
class LoginMsg
{
privatestring _username;
privatestring _password;
publicstring Username
{
_username; }
value; }
}
publicstring Password
{
_password; }
value; }
}

}
}

编译结果: