Cosmos/source/Cosmos.System.Plugs/System/IO/FileSystemInfoImpl.cs
Matthijs ter Woord d9a9737608 Filesystem/VFS/FAT work by @charlesbetros has been merged into main kernel.
This does NOT mean it's fully working yet!
2015-10-02 17:12:00 +02:00

18 lines
493 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Cosmos.IL2CPU.Plugs;
using System.IO;
namespace SentinelKernel.System.Plugs.System.IO
{
[Plug(Target = typeof(global::System.IO.FileSystemInfo))]
public static class FileSystemInfo
{
public static string get_FullName(global::System.IO.FileSystemInfo aThis)
{
return "FullName not implemented yet in FileSystemInfo plug";
}
}
}