using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _05Protected
{
class Program
{
static void Main(string[] args)
{
Person p = new Person();
p._name
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _05Protected
{
public class Person
{
protected string _name;
public string Name
{
get { return _name; }
set { _name = value; }
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _05Protected
{
public class Student:Person
{
public void Test()
{
_name = "zhangs";
}
}
}