mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
15 lines
No EOL
346 B
C#
15 lines
No EOL
346 B
C#
using System.Net;
|
|
|
|
using Cosmos.IL2CPU.Plugs;
|
|
|
|
namespace Cosmos.System.Plugs.System.Net
|
|
{
|
|
[Plug(Target = typeof(SocketAddress))]
|
|
public static class SocketAddressImpl
|
|
{
|
|
public static string ToString(SocketAddress aThis)
|
|
{
|
|
return "<SocketAddress.ToString() not yet plugged correctly!>";
|
|
}
|
|
}
|
|
} |