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