예제 #1
0
 public void ScrambleText()
 {
     if (SelectedMethod.Equals("Scramble"))
     {
         Output = ScrambleText(Input);
     }
     else if (SelectedMethod.Equals("Caesar Shuffle"))
     {
         Output = CeasarShuffleText(Input);
     }
     else
     {
         Output = Input;
     }
 }