Emotiv.EdkDll.IS_Copy C# (CSharp) Method

IS_Copy() public static method

public static IS_Copy ( IntPtr a, IntPtr b ) : void
a System.IntPtr
b System.IntPtr
return void
        public static void IS_Copy(IntPtr a, IntPtr b)
        {
            Unmanaged_IS_Copy(a, b);
        }

Usage Example

示例#1
0
 /// <summary>
 /// Copy constructor
 /// </summary>
 /// <param name="es">EmoState to be copied</param>
 public EmoState(EmoState es)
 {
     this.hEmoState = EdkDll.IS_Create();
     EdkDll.IS_Copy(this.hEmoState, es.GetHandle());
 }
EdkDll