Cosmos/source/Cosmos.Core.Plugs/System/Resources/ResourceManagerImpl.cs
2017-02-12 01:08:29 +00:00

24 lines
480 B
C#

using System;
using System.Resources;
using Cosmos.IL2CPU.Plugs;
namespace Cosmos.Core.Plugs.System.Resources
{
[Plug(typeof(ResourceManager))]
public static class ResourceManagerImpl
{
public static void CCtor()
{
}
public static void Ctor(Type aResourceSource)
{
}
public static string GetString(string aString)
{
return EnvironmentImpl.GetResourceString(aString);
}
}
}