mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +08:00
18 lines
280 B
C#
18 lines
280 B
C#
namespace CPF.Mac.CoreFoundation
|
|
{
|
|
public struct CFSocketNativeHandle
|
|
{
|
|
internal readonly int handle;
|
|
|
|
internal CFSocketNativeHandle(int handle)
|
|
{
|
|
this.handle = handle;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return $"[CFSocketNativeHandle {handle}]";
|
|
}
|
|
}
|
|
}
|