在c#2中定义get或set

时间:2010-08-14 15:05:47

标签: c#

朋友我在c#中使用get或set in class时遇到问题  当我使用get或set in给出错误时(在课堂上无效的令牌) 请参阅下面的代码,我有这个问题

namespace ConsoleApplication2
{
    class Program
    {
      class Car
      {
        private int _speed;  
        public int Speed;
        {
          get
          {
           return _speed
          }
       }
    }
}

1 个答案:

答案 0 :(得分:1)

你在Speed之后有一个半冒号。它应该是:

public int Speed
{ 
     get { return _speed; } 
}