mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-26 19:48:01 +02:00
14 lines
228 B
Beef
14 lines
228 B
Beef
![]() |
using System.Threading;
|
||
|
using System;
|
||
|
|
||
|
namespace System.Threading {
|
||
|
|
||
|
|
||
|
public static class Timeout
|
||
|
{
|
||
|
public const int32 Infinite = -1;
|
||
|
internal const uint32 UnsignedInfinite = (uint32)-1;
|
||
|
}
|
||
|
|
||
|
}
|