using System; using System.IO; using IL2CPU.API.Attribs; namespace Cosmos.System_Plugs.System.IO { [Plug(Target = typeof(FileLoadException))] public static class FileLoadExceptionImpl { public static string FormatFileLoadExceptionMessage(string fileName, int hResult) { throw new NotImplementedException("FormatFileLoadExceptionMessage"); } public static string ToString(FileLoadException aThis) { throw new NotImplementedException("FileLoadException.ToString()"); } } }