Cosmos/source/Indy.IL2CPU/IL/CustomImplementations/System/Net/IPAddressImpl.cs
kudzu_cp 3e05e23892
2008-09-21 23:15:22 +00:00

20 lines
No EOL
587 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Text;
using Indy.IL2CPU.Plugs;
namespace Indy.IL2CPU.IL.CustomImplementations.System.Net {
[Plug(Target=typeof(IPAddress))]
public static class IPAddressImpl {
public static string ToString(IPAddress aThis) {
return "<IPAddress.ToString() not yet implemented!>";
}
[PlugMethod(Signature = "System_Void__System_Net_IPAddress__cctor__")]
public static void CCtor() {
// todo: implement
}
}
}