mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 12:58:39 +00:00
15 lines
No EOL
375 B
C#
15 lines
No EOL
375 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Indy.IL2CPU.Plugs;
|
|
using System.Globalization;
|
|
|
|
namespace Indy.IL2CPU.CustomImplementation.System.Globalization {
|
|
[Plug(Target = typeof(CultureInfo))]
|
|
public static class CultureInfoImpl {
|
|
public static CultureInfo get_CurrentCulture() {
|
|
return null;
|
|
}
|
|
}
|
|
} |