mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-16 07:14:09 +02:00
28 lines
309 B
Beef
28 lines
309 B
Beef
#pragma warning disable 168
|
|
|
|
using System.Threading;
|
|
|
|
namespace IDETest
|
|
{
|
|
class Break
|
|
{
|
|
public static void Infinite()
|
|
{
|
|
while (true)
|
|
{
|
|
//Thread.Sleep(100);
|
|
}
|
|
}
|
|
|
|
public static void Test()
|
|
{
|
|
//Test_Start
|
|
int a = 0;
|
|
a++;
|
|
a++;
|
|
a++;
|
|
if (a == -1)
|
|
Infinite();
|
|
}
|
|
}
|
|
}
|