Program.cs

26 lines | 658 B Blame History Raw Download
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

using System.Threading;
using System.Globalization;

using YED.Console.Test;

namespace YED
{
    class Program
    {        
        static void Main(string[] args)
        {
            //Необходимо для того, чтобы double и float парсились из формата 10.10, а не 10,10
            Thread.CurrentThread.CurrentCulture = new CultureInfo("en-US");

            new Test1_ReadWrite().Test(true, true);
            new Test2_CreateGraph_and_ExportToYed().Test(true);            
        }
    }
}