2 instantiations of LCID
System.Windows.Forms.Primitives (2)
Windows\Win32\PInvoke.LCID.cs (2)
24public static implicit operator LCID(uint value) => new(value); 26public static LCID USER_DEFAULT { get; } = new(0x0400);
9 references to LCID
System.Windows.Forms.Primitives (9)
Windows\Win32\PInvoke.LCID.cs (9)
8public struct LCID : IEquatable<LCID> 14public override readonly bool Equals(object? obj) => obj is LCID other && other.RawValue == RawValue; 16public readonly bool Equals(LCID other) => other.RawValue == RawValue; 20public static bool operator ==(LCID a, LCID b) => a.RawValue == b.RawValue; 22public static bool operator !=(LCID a, LCID b) => a.RawValue != b.RawValue; 24public static implicit operator LCID(uint value) => new(value); 26public static LCID USER_DEFAULT { get; } = new(0x0400);