Свойство | Type | Description | |
---|---|---|---|
x | int |
Méthode | Description | |
---|---|---|
Equals ( object obj ) : bool |
|
|
GetHashCode ( ) : int |
|
|
Max ( Point a, Point b ) : Point |
Get the max of both Example: a = (1, 6) b = (4, 5) return (4, 6)
|
|
Min ( Point a, Point b ) : Point |
Get the min of both Example: a = (1, 6) b = (4, 5) return (1, 5)
|
|
Point ( int x, int y ) : System |
Constructor
|
|
Set ( int x, int y ) : void |
Constructor
|
|
Swap ( ) : Point | ||
ToString ( ) : string |
Converts to readable string
|
|
operator ( ) : Point | ||
operator ( ) : bool |
public static Max ( Point a, Point b ) : Point | ||
a | Point | |
b | Point | |
Résultat | Point |
public static Min ( Point a, Point b ) : Point | ||
a | Point | |
b | Point | |
Résultat | Point |