在C#中,可以通过以下几种方式为构造函数设置默认值:
public class MyClass
{
public int MyProperty { get; set; }
public MyClass()
{
MyProperty = 0; // 设置默认值
}
}
public class MyClass
{
public int MyProperty { get; set; }
public MyClass(int myProperty = 0)
{
MyProperty = myProperty; // 设置默认值
}
}
这样,在创建MyClass
的实例时,如果没有提供myProperty
参数,将使用默认值0。