mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
15 lines
365 B
C#
15 lines
365 B
C#
using System.IO;
|
|
|
|
using Cosmos.IL2CPU.Plugs;
|
|
|
|
namespace Cosmos.System.Plugs.System.IO
|
|
{
|
|
[Plug(Target = typeof(FileSystemInfo))]
|
|
public static class FileSystemInfoImpl
|
|
{
|
|
public static string get_FullName(FileSystemInfo aThis)
|
|
{
|
|
return "FullName not implemented yet in FileSystemInfo plug";
|
|
}
|
|
}
|
|
}
|