Cosmos/source/Indy.IL2CPU/IL/CustomImplementations/System/Resource/ResourceManager.cs
kudzu_cp 2ce9bbc646
2008-09-21 23:26:17 +00:00

23 lines
675 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Indy.IL2CPU.Plugs;
using System.Resources;
using System.Globalization;
namespace Indy.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");
}
}
}