コード例 #1
0
ファイル: SimDevice.cs プロジェクト: robotdotnet/WPILib
 public void Dispose()
 {
     if (NativeHandle != 0)
     {
         SimDeviceLowLevel.Free(NativeHandle);
     }
 }
コード例 #2
0
ファイル: SimDevice.cs プロジェクト: robotdotnet/WPILib
        public static SimDevice Create(string name)
        {
            var handle = SimDeviceLowLevel.Create(name);

            if (handle <= 0)
            {
                return(new SimDevice());
            }
            return(new SimDevice(handle));
        }