コード例 #1
0
ファイル: Program.cs プロジェクト: AliaksandrLiashevich/Chat
        static void Main(string[] args)
        {
            try
            {
                Client client = new Client(new TextGenerator(new Storage()));

                client.StartWorking();
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }

            Console.ReadKey();
        }