Exemple #1
0
        static void Main(string[] args)
        {
            SnapshotThread thread = new SnapshotThread();
            thread.Start();

            Console.WriteLine("Updating snapshots.");
            Console.ReadKey();

            thread.Stop();
        }
Exemple #2
0
        static void Main(string[] args)
        {
            SnapshotThread thread = new SnapshotThread();

            thread.Start();

            Console.WriteLine("Updating snapshots.");
            Console.ReadKey();

            thread.Stop();
        }