ReversiForm
1.0.0
ReversiForm
Model
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
70
public
ReversiPoint
Clone
()
71
{
72
return
(
ReversiPoint
)MemberwiseClone();
73
}
74
}
75
}
ReversiForm.ReversiPoint.Clone
ReversiPoint Clone()
コピー
Definition:
ReversiPoint.cs:70
System
ReversiForm.ReversiPoint._y
int _y
Y.
Definition:
ReversiPoint.cs:34
ReversiForm.ReversiPoint
リバーシポイント
Definition:
ReversiPoint.cs:30
ReversiForm.ReversiPoint._x
int _x
X.
Definition:
ReversiPoint.cs:33
ReversiForm
Definition:
FormMain.cs:33
ReversiForm.ReversiPoint.ReversiPoint
ReversiPoint()
コンストラクタ
Definition:
ReversiPoint.cs:58
Generated on Sat Sep 15 2018 20:28:10 for ReversiForm by
1.8.13