mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
18 lines
487 B
C#
18 lines
487 B
C#
using Cosmos.IL2CPU.Plugs;
|
|
|
|
namespace Cosmos.System.Plugs.System
|
|
{
|
|
[Plug(TargetName = "System.SR, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", 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;
|
|
}
|
|
}
|
|
}
|