Example #1
0
 public void ShowRemoveFromStart(MyDeque <MyString> myStrings)
 {
     Console.WriteLine("The string was removed from the collection successfully");
     myStrings.RemoveFirst();
     Thread.Sleep(1200);
     ShowMenu(myStrings);
 }