1 write to Value
System.Private.Windows.Core (1)
Windows.Win32.HCURSOR.g.cs (1)
29
internal HCURSOR(void* value) => this.
Value
= value;
11 references to Value
System.Private.Windows.Core (10)
Windows.Win32.HCURSOR.g.cs (10)
37
internal bool IsNull =>
Value
== default;
39
public static implicit operator void*(HCURSOR value) => value.
Value
;
43
public static bool operator ==(HCURSOR left, HCURSOR right) => left.
Value
== right.
Value
;
47
public bool Equals(HCURSOR other) => this.
Value
== other.
Value
;
51
public override int GetHashCode() => unchecked((int)this.
Value
);
53
public override string ToString() => $"0x{(nuint)this.
Value
:x}";
55
public static implicit operator IntPtr(HCURSOR value) => new IntPtr(value.
Value
);
61
public static implicit operator HICON(HCURSOR value) => new HICON(value.
Value
);
System.Windows.Forms (1)
System\Windows\Forms\Input\Cursor.cs (1)
477
public override unsafe int GetHashCode() => (int)_handle.
Value
;