mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
23 lines
691 B
C#
23 lines
691 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Cosmos.IL2CPU.Plugs;
|
|
using System.Resources;
|
|
using System.Globalization;
|
|
|
|
namespace Cosmos.IL2CPU.IL.CustomImplementations.System.Resources
|
|
{
|
|
[Plug(TargetName="System.Resources.ResourceManager, mscorlib")]
|
|
public static class ResourceManagerImpl
|
|
{
|
|
//public static ResourceSet
|
|
// InternalGetResourceSet( ResourceManager rm,
|
|
// CultureInfo ci, bool createIfNotExists, bool tryParents)
|
|
|
|
//{
|
|
// throw new Exception("System.Resources.ResourceManager.InternalGetResourceSet need pluging properly");
|
|
//}
|
|
|
|
}
|
|
}
|