mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-26 03:28:02 +02:00
13 lines
229 B
Beef
13 lines
229 B
Beef
using System.Threading;
|
|
using System;
|
|
|
|
namespace System.Threading {
|
|
|
|
|
|
public static class Timeout
|
|
{
|
|
public const int32 Infinite = -1;
|
|
protected const uint32 UnsignedInfinite = (uint32)-1;
|
|
}
|
|
|
|
}
|