Cosmos/source/Cosmos.System.Plugs/System/IO/DriveInfoImpl.cs
2015-11-04 22:26:38 -06:00

24 lines
615 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(DriveInfo))]
public static class DriveInfoImpl
{
[PlugMethod(Signature = "System_Void__System_IO_DriveInfo__ctor_System_String_")]
public static void Ctor(DriveInfo aThis, string aDriveName)
{
}
public static string get_DriveFormat(ref DriveInfo aThis)
{
return "DriveFormat not implemented";
}
}
}