1 write to Value
System.Private.Windows.Core (1)
Windows.Win32.CHAR.g.cs (1)
29
internal CHAR(sbyte value) => this.
Value
= value;
7 references to Value
System.Private.Windows.Core (7)
Windows.Win32.CHAR.g.cs (7)
31
public static implicit operator sbyte(CHAR value) => value.
Value
;
35
public static bool operator ==(CHAR left, CHAR right) => left.
Value
== right.
Value
;
39
public bool Equals(CHAR other) => this.
Value
== other.
Value
;
43
public override int GetHashCode() => this.
Value
.GetHashCode();
45
public override string ToString() => $"0x{this.
Value
:x}";