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 = "苹果"
};
在上面的示例中,我们使用对象初始化语法通过属性赋值的方式来传递值。在实例化对象时,使用大括号 {} 指定属性名称和对应的值,用逗号 , 分隔每个属性的设置。