1 write to RawValue
System.Windows.Forms.Primitives (1)
Windows\Win32\PInvoke.LCID.cs (1)
12public LCID(uint id) => RawValue = id;
9 references to RawValue
System.Windows.Forms.Primitives (9)
Windows\Win32\PInvoke.LCID.cs (9)
14public override readonly bool Equals(object? obj) => obj is LCID other && other.RawValue == RawValue; 16public readonly bool Equals(LCID other) => other.RawValue == RawValue; 18public override readonly int GetHashCode() => RawValue.GetHashCode(); 20public static bool operator ==(LCID a, LCID b) => a.RawValue == b.RawValue; 22public static bool operator !=(LCID a, LCID b) => a.RawValue != b.RawValue;