Cosmos/source/Cosmos.System2_Plugs/System/IO/FileLoadExceptionImpl.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

23 lines
669 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(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()");
}
}
}