Emotiv.EdkDll.IS_MentalCommandEqual C# (CSharp) Method

IS_MentalCommandEqual() public static method

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

Usage Example

Example #1
0
 /// <summary>
 /// Check whether two states are with identical Cognitiv state
 /// </summary>
 /// <param name="state">EmoState</param>
 /// <returns>true: Equal, false: Different</returns>
 public Boolean MentalCommandEqual(EmoState state)
 {
     return(EdkDll.IS_MentalCommandEqual(GetHandle(), state.GetHandle()));
 }
EdkDll