Exemplo n.º 1
0
        static void DoSomeMagic()
        {
            WorkWithText text = new WorkWithText();

            text.Read();
            text.SetType();
            text.PrintInteger();
            text.PrintDouble();
            text.PrintString();
        }
Exemplo n.º 2
0
        static void DoSomeMagic(string path)
        {
            WorkWithText text = new WorkWithText();

            text.Initiate(path);
            text.Split();
            text.ToLowCase();
            text.AddLine();
            text.AddTimeStamp();
            text.Print(path);
        }