BOOLEAN.cs 367 B

1234567891011121314151617
  1. using System;
  2. namespace Microsoft.Win32
  3. {
  4. //BOOLEAN定义
  5. public static partial class NativeMethods
  6. {
  7. /// <summary>
  8. /// 真
  9. /// </summary>
  10. public static readonly IntPtr TRUE = new IntPtr(1);
  11. /// <summary>
  12. /// 假
  13. /// </summary>
  14. public static readonly IntPtr FALSE = IntPtr.Zero;
  15. }
  16. }