1 write to Value
Microsoft.VisualStudio.Extensibility.Testing.Xunit (1)
Windows.Win32.HANDLE.g.cs (1)
28
internal HANDLE(IntPtr value) => this.
Value
= value;
8 references to Value
Microsoft.VisualStudio.Extensibility.Testing.Xunit (8)
Windows.Win32.HANDLE.g.cs (8)
32
internal bool IsNull =>
Value
== default;
34
public static implicit operator IntPtr(HANDLE value) => value.
Value
;
38
public static bool operator ==(HANDLE left, HANDLE right) => left.
Value
== right.
Value
;
42
public bool Equals(HANDLE other) => this.
Value
== other.
Value
;
46
public override int GetHashCode() => this.
Value
.GetHashCode();
48
public override string ToString() => $"0x{this.
Value
:x}";