2 instantiations of LCID
System.Windows.Forms.Primitives (2)
Windows\Win32\PInvoke.LCID.cs (2)
24
public static implicit operator LCID(uint value) =>
new
(value);
26
public static LCID USER_DEFAULT { get; } =
new
(0x0400);
9 references to LCID
System.Windows.Forms.Primitives (9)
Windows\Win32\PInvoke.LCID.cs (9)
8
public struct LCID : IEquatable<
LCID
>
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;
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;
24
public static implicit operator
LCID
(uint value) => new(value);
26
public static
LCID
USER_DEFAULT { get; } = new(0x0400);