GetLocaleInfo

[DllImport("Kernel32.dll")][return: MarshalAs(UnmanagedType.U4)]
public static extern uint GetLocaleInfo(
   uint Locale,
   uint LCType,
   StringBuilder lpLCData,
   uint cchData
);

Microsoft documentation: Link

Last updated