GetLocaleInfoEx

[DllImport("Kernel32.dll", SetLastError = true)][return: MarshalAs(UnmanagedType.U4)]
public static extern int GetLocaleInfoEx(
   string lpLocaleName,
   uint LCType,
   StringBuilder lpLCData,
   uint cchData
);

Microsoft documentation: Link

Last updated