加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
027-对象初始化器与可选参数.cs 663 Bytes
一键复制 编辑 原始数据 按行查看 历史
using System;
namespace _027_对象初始化器与可选参数
{
public class Bunny
{
public string Name;
public bool LikesCarrots;
public bool LikesHumans;
public Bunny() { }
public Bunny(string n) { Name = n; }
public Bunny(string name,bool likesCarrots=false,bool likesHumans=false)
{
Name = name;
LikesCarrots = likesCarrots;
LikesHumans = likesHumans;
}
}
class Program
{
static void Main(string[] args)
{
Bunny b1 = new Bunny(name: "Bo", likesCarrots: true);
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化