| File: Windows\Win32\PInvoke.LCID.cs | Web Access |
| Project: src\winforms\src\System.Windows.Forms.Primitives\src\System.Windows.Forms.Primitives.csproj (System.Windows.Forms.Primitives) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Windows.Win32; internal static partial class PInvoke { public struct LCID : IEquatable<LCID> { public uint RawValue; public LCID(uint id) => RawValue = id; public override readonly bool Equals(object? obj) => obj is LCID other && other.RawValue == RawValue; public readonly bool Equals(LCID other) => other.RawValue == RawValue; public override readonly int GetHashCode() => RawValue.GetHashCode(); public static bool operator ==(LCID a, LCID b) => a.RawValue == b.RawValue; public static bool operator !=(LCID a, LCID b) => a.RawValue != b.RawValue; public static implicit operator LCID(uint value) => new(value); public static LCID USER_DEFAULT { get; } = new(0x0400); } }