This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
using System;
using System.Runtime.InteropServices;
namespace System.Threading
{
/// <summary>Contains a constant used to specify an infinite amount of time. This class cannot be inherited. </summary>
/// <filterpriority>2</filterpriority>
// Token: 0x02000626 RID: 1574
[ComVisible(true)]
public static class Timeout
{
/// <summary>A constant used to specify an infinite waiting period. This field is constant.</summary>
/// <filterpriority>1</filterpriority>
// Token: 0x04001753 RID: 5971
public const int Infinite = -1;
}
}