gpt4 book ai didi

c# - 在 C# 中获取/设置更简单的方法?

转载 作者:太空狗 更新时间:2023-10-30 00:20:12 26 4
gpt4 key购买 nike

嘿,所以我目前正在为大学编写一个程序,在创建我的类(class)时我正在使用 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; }
}

最佳答案

使用auto-implemented properties相反:

public string Customer_First_Name { get; set; }

在这种情况下,编译器将生成用于存储属性值的字段。

BTW 如果您将在 Visual Studio 中使用 prop 代码片段,您可以节省更多时间。只需开始输入 prop 并点击 Tab - 它会粘贴自动生成的属性的片段。您需要的一切 - 提供属性名称和类型。

关于c# - 在 C# 中获取/设置更简单的方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13441499/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com