mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 04:48:53 +00:00
- 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
15 lines
350 B
C#
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";
|
|
}
|
|
}
|
|
}
|