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