ReversiForm  1.0.0
ReversiForm
ReversiPoint.cs
Go to the documentation of this file.
1 
18 using System;
19 using System.Collections.Generic;
20 using System.Linq;
21 using System.Text;
22 
23 namespace ReversiForm
24 {
30  public class ReversiPoint
31  {
32  #region メンバ変数
33  private int _x;
34  private int _y;
35  #endregion
36 
37  #region プロパティ
38  public int x
39  {
40  get { return _x; }
41  set { _x = value; }
42  }
43  public int y
44  {
45  get { return _y; }
46  set { _y = value; }
47  }
48  #endregion
49 
58  public ReversiPoint()
59  {
60  }
61 
71  {
72  return (ReversiPoint)MemberwiseClone();
73  }
74  }
75 }
ReversiPoint Clone()
コピー
Definition: ReversiPoint.cs:70
リバーシポイント
Definition: ReversiPoint.cs:30
ReversiPoint()
コンストラクタ
Definition: ReversiPoint.cs:58