C#示例话传值的两种方式

使用构造函数传递值:

public class ComplexInfoModel
{
    public string Key { get; set; }
    public string Text { get; set; }

    public ComplexInfoModel(string key, string text)
    {
        Key = key;
        Text = text;
    }
}

// 实例化并传递值
var obj = new ComplexInfoModel("1", "苹果");

在上面的示例中,ComplexInfoModel 类定义了一个带有两个参数的构造函数,用于接收 key 和 text 的值,并将其赋给类的属性。

使用属性的赋值语法:

public class ComplexInfoModel
{
    public string Key { get; set; }
    public string Text { get; set; }
}

// 实例化并通过属性赋值传递值
var obj = new ComplexInfoModel()
{
    Key = "1",
    Text = "苹果"
};

在上面的示例中,我们使用对象初始化语法通过属性赋值的方式来传递值。在实例化对象时,使用大括号 {} 指定属性名称和对应的值,用逗号 , 分隔每个属性的设置。

无论是使用构造函数还是属性赋值语法,都可以在实例化时传递值给类的属性。具体选用哪种方式取决于类的设计和需求。

posted @ 2023-10-31 08:23  窦戈  阅读(75)  评论(0编辑  收藏  举报