1 instantiation of CHAR
System.Private.Windows.Core (1)
Windows.Win32.CHAR.g.cs (1)
33 public static explicit operator CHAR(sbyte value) => new CHAR(value);
13 references to CHAR
System.Private.Windows.Core (13)
Windows.Win32.CHAR.g.cs (9)
25 : IEquatable<CHAR> 31 public static implicit operator sbyte(CHAR value) => value.Value; 33 public static explicit operator CHAR(sbyte value) => new CHAR(value); 35 public static bool operator ==(CHAR left, CHAR right) => left.Value == right.Value; 37 public static bool operator !=(CHAR left, CHAR right) => !(left == right); 39 public bool Equals(CHAR other) => this.Value == other.Value; 41 public override bool Equals(object obj) => obj is CHAR other && this.Equals(other);
Windows.Win32.PROPVARIANT.g.cs (1)
62 internal winmdroot.Foundation.CHAR cVal;
Windows.Win32.RGNDATA.g.cs (2)
33 internal global::Windows.Win32.VariableLengthInlineArray<winmdroot.Foundation.CHAR> Buffer; 40 v +=checked((count - 1) * sizeof(winmdroot.Foundation.CHAR));
Windows.Win32.VARIANT.g.cs (1)
155 internal winmdroot.Foundation.CHAR cVal;