Cosmos/source/Cosmos.System2_Plugs/System/IO/FileNotFoundExceptionImpl.cs
fanoI 37d2ae4079 Corrected and added tests for Filetream in any FileMode
- Added tests to File for issue https://github.com/CosmosOS/Cosmos/issues/760
- FileImpl add "wrong" code for the previous merge: removed it
- Clean up
2017-12-24 13:34:11 +01:00

15 lines
350 B
C#

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