回 帖 发 新 帖 刷新版面

主题:还请高手指点一下c#问题

using System;
using System.Collections.Generic;
using System.Text;

namespace zuobiao
{
    public class Point
    {
        private int x, y;
        public  Point()
        {
        }
        public Point(int xValue, int yValue)
        {
            X = xValue;
            Y = yValue;
        }
        public int X
        {
            get
            {
                return x;

            }
            set
            {
                x = value;
            }

        }
        public int Y
        {
            get
            {
                return y;

            }
            set
            {
                y = value;
            }

        }

    }
    
    public override [color=FF00FF]string[/color]  ToString()
    
    {
    return "["+x+","+y+"]";
    }

}
[color=FF0000]错误1:应输入 class、delegate、enum、interface 或 struct[/color]
新手入门,
请教一下错误出在哪里了呢?

回复列表 (共1个回复)

沙发

多了个"}"
  set
            {
                y = value;
            }

        }

    
    
    public override string  ToString()
    
    {
    return "["+x+","+y+"]";
    }

   }
}

我来回复

您尚未登录,请登录后再回复。点此登录或注册