Cosmos/source/Cosmos.System2_Plugs/System/IO/FileNotFoundExceptionImpl.cs
2018-02-04 19:13:31 +00:00

15 lines
336 B
C#

using System.IO;
using IL2CPU.API.Attribs;
namespace Cosmos.System_Plugs.System.IO
{
[Plug(Target = typeof(FileNotFoundException))]
public static class FileNotFoundExceptionImpl
{
public static string ToString(FileNotFoundException aThis)
{
return "FileNotFoundException";
}
}
}