static void DoSomeMagic() { WorkWithText text = new WorkWithText(); text.Read(); text.SetType(); text.PrintInteger(); text.PrintDouble(); text.PrintString(); }
static void DoSomeMagic(string path) { WorkWithText text = new WorkWithText(); text.Initiate(path); text.Split(); text.ToLowCase(); text.AddLine(); text.AddTimeStamp(); text.Print(path); }