C# Class BExplorer.Shell.Interop.NativePoint

Show file Open project: Gainedge/BetterExplorer

Public Methods

Method Description
Equals ( object obj ) : bool

Determines if this NativePoint is equal to another.

GetHashCode ( ) : int

Gets a hash code for the NativePoint.

NativePoint ( int x, int y ) : System

Initialize the NativePoint

operator ( ) : bool

Determines if two NativePoints are equal.

Method Details

Equals() public method

Determines if this NativePoint is equal to another.
public Equals ( object obj ) : bool
obj object Another NativePoint to compare
return bool

GetHashCode() public method

Gets a hash code for the NativePoint.
public GetHashCode ( ) : int
return int

NativePoint() public method

Initialize the NativePoint
public NativePoint ( int x, int y ) : System
x int The x coordinate of the point.
y int The y coordinate of the point.
return System

operator() public static method

Determines if two NativePoints are equal.
public static operator ( ) : bool
return bool