mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
18 lines
No EOL
510 B
C#
18 lines
No EOL
510 B
C#
using Cosmos.IL2CPU.Plugs;
|
|
|
|
namespace Cosmos.System.Plugs.System.Drawing
|
|
{
|
|
[Plug(TargetName = "System.Drawing.SR, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", IsMicrosoftdotNETOnly = true)]
|
|
public static class SRImpl
|
|
{
|
|
public static string GetString(string aString)
|
|
{
|
|
return aString;
|
|
}
|
|
|
|
public static string GetString(string aString, params object[] aArgs)
|
|
{
|
|
return aString;
|
|
}
|
|
}
|
|
} |