ねえ、私は現在大学向けのプログラムを書いています。私が使用しているクラスを作成するときに get set 私の質問は、以下に示すこの方法よりも簡単に設定する方法があるかどうかです。
現在の方法を示すコード スニペット
private string customer_first_name;
private string customer_surname;
private string customer_address;
public DateTime arrival_time;
//Using accessors to get the private variables
//Using accessors to set the private variables
public string Customer_First_Name
{
get { return customer_first_name; }
set { customer_first_name = value; }
}