Emotiv.EdkDll.IS_Equal C# (CSharp) Method

IS_Equal() public static method

public static IS_Equal ( IntPtr a, IntPtr b ) : System.Boolean
a System.IntPtr
b System.IntPtr
return System.Boolean
        public static Boolean IS_Equal(IntPtr a, IntPtr b)
        {
            return Unmanaged_IS_Equal(a, b);
        }

Usage Example

示例#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()));
 }
EdkDll