我有一个奇怪的问题。我试图了解如何正确使用访问器。我想到在类中将它们与私有和公共变量一起使用,但 C# 3.0 允许我们仅将它们与公共变量一起使用(即)
public string Email {get; set;}
所以,我正在编写一个应用程序 - 这是我的代码的一部分:
public class Customers
{
public string Telephone;
public string Email {get; set;}
public void LoadCustomer(string _name)
{
DataSet dataSet = new DataSet();
dataSet.ReadXml("Customers.xml");
XDocument doc = XDocument.Load("Customers.xml");
XElement root = doc.Root;
for (int i = 0; i < dataSet.Tables[0].Rows.Count; i++)
{
var Klient = from wpisy in root.Elements("Customer")
where wpisy.Element("Name").Value.Equals(_name)
select wpisy;
Telephone = Klient.First().Element("Telephone").Value;
Email = Klient.First().Element("Email").Value;
}
}
}
private void Window_Loaded_1(object sender, RoutedEventArgs e)
{
Customers customer = new Customers();
customer.LoadCustomer(name);
txt_Telephone.Text = customer.Telephone;
txt_Email.Text = customer.Email;
}
如您所见,我有一个类和一个在打开窗口时调用该类的方法。每当我使用访问器时,一切正常:
public string Email {get; set;}
或者我不:
public string Telephone;
所以,我的问题(也许很傻)是使用带有此类公共变量的访问器有什么意义,因为我使用与不使用它们时没有区别?