Cosmos/source/Cosmos.System2_Plugs/System/IO/FileNotFoundExceptionImpl.cs
fanoI 51fac7ada4 Plugged FileInfo
- Added tests for FileInfo
- Added tests for Binary Reader/Writer
- Unified StreamReader and StreamWriter in a unique test
2017-12-10 20:35:29 +01:00

17 lines
492 B
C#

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