码迷,mamicode.com
首页 > 移动开发 > 详细

关于:“ConsoleApplication1.Person.Name”不可访问,因为它受保护级别限制

时间:2015-01-13 15:39:34      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

namespace ConsoleApplication1

{

    class Program

    {  

       static void Main(string[] args)   

      {

            Person p1 = new Person();

            p1.Name = "小明";   

          p1.height = 180;      

       p1.Age=20;  

           p1.Say();               

    }    

}    

public class Person  

   {          

          string Name;    

     public int height;

        public int Age;

        public void Say()     

    {        

    Console.WriteLine("你好,我叫{0},身高{1},年龄{2}",this.Name,this.height,this.Age);   

      }   

  }    

}

这是因为在 string Name的前面没有加上public 导致访问级别低!

关于:“ConsoleApplication1.Person.Name”不可访问,因为它受保护级别限制

标签:

原文地址:http://www.cnblogs.com/jzqblogs/p/4221301.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!