ResourceManager override GetResourceFileName
问题 I want to override a method in the System.Resources.ResourceManager class in mscorlib v4. I want to override the method GetResourceFileName like this; protected override string GetResourceFileName(CultureInfo culture) { string resourceFileName = base.GetResourceFileName(culture); return resourceFileName.Replace(".resources", ".resx"); } The problem is, to instanciate a ResourceManager class I must use the static method CreateFileBasedResourceManager, which returns a new instance of the