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); } } }