IS_Equal() public static method

public static IS_Equal ( IntPtr a, IntPtr b ) : System.Boolean
a System.IntPtr
b System.IntPtr
return System.Boolean
Exemplo n.º 1
0
 /// <summary>
 /// Check whether two EmoStateHandles are identical
 /// </summary>
 /// <param name="a">EmoState</param>
 /// <param name="b">EmoState</param>
 /// <returns></returns>
 public Boolean Equals(EmoState a, EmoState b)
 {
     return(EdkDll.IS_Equal(a.GetHandle(), b.GetHandle()));
 }