mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
27 lines
No EOL
657 B
C#
27 lines
No EOL
657 B
C#
using System;
|
|
using System.Net;
|
|
|
|
using Cosmos.IL2CPU.Plugs;
|
|
|
|
namespace Cosmos.System.Plugs.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
|
|
}
|
|
|
|
public static int GetHashCode(IPAddress aThis)
|
|
{
|
|
throw new Exception("IPAddress.GetHashCode Not implemented");
|
|
}
|
|
}
|
|
} |