mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-16 16:50:45 +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}]";
|
||
|
}
|
||
|
}
|
||
|
}
|