Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/ThreadTest.cs
2018-01-21 19:15:27 +01:00

15 lines
263 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;
namespace Cosmos.Compiler.Tests.Bcl.System
{
class ThreadTest
{
public static void Execute()
{
Thread.Sleep(500);
}
}
}