mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 12:58:39 +00:00
- Added tests for FileInfo - Added tests for Binary Reader/Writer - Unified StreamReader and StreamWriter in a unique test
23 lines
669 B
C#
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()");
|
|
}
|
|
}
|
|
}
|