using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace LeiheDuixiang
{
/// <summary>
/// 小朋友
/// </summary>
class Child
{
private string name; //字段
/// <summary>
/// 完成字段的对外访问接口
/// 属性,属性的名字首字母应该大写
/// </summary>
public string Name
{
get { return name; }//读访问器,返回字段的值
set { name = value; } //写访问器,给字段赋值
}
//无参的构造方法
public Child()
{
Name = "碧瑶";
}
}
}
Program.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
nam