如何为定义如下的
属性设置默认值:
public int MyProperty { get; set; }
那是在VS2008(代码片段)中使用“prop”[tab] [tab].
是否有可能不退回“旧方式”?:
private int myProperty = 0; // default value
public int MyProperty
{
get { return myProperty; }
set { myProperty = value; }
}
谢谢你的时间.
最好的祝福.
只需在构造
函数中设置“默认”值即可.
public class Person
{
public Person()
{
this.FirstName = string.Empty;
}
public string FirstName { get; set; }
}
此外,它们被称为自动属性.
原文链接:https://www.f2er.com/csharp/100809.html