C# Class AcademyRPG.Point

Mostrar archivo Open project: vladislav-karamfilov/TelerikAcademy Class Usage Examples

Public Properties

Property Type Description
X int
Y int

Public Methods

Method Description
GetHashCode ( ) : int
Parse ( string pointString ) : Point
Point ( int x, int y ) : System
Point ( string xString, string yString ) : System
ToString ( ) : string
operator ( ) : bool

Method Details

GetHashCode() public method

public GetHashCode ( ) : int
return int

Parse() public static method

public static Parse ( string pointString ) : Point
pointString string
return Point

Point() public method

public Point ( int x, int y ) : System
x int
y int
return System

Point() public method

public Point ( string xString, string yString ) : System
xString string
yString string
return System

ToString() public method

public ToString ( ) : string
return string

operator() public static method

public static operator ( ) : bool
return bool

Property Details

X public_oe property

public int X
return int

Y public_oe property

public int Y
return int