Imagara 3 년 전
부모
커밋
c75012064e
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      Encrypter/MainWindow.xaml.cs

+ 1 - 0
Encrypter/MainWindow.xaml.cs

@@ -96,6 +96,7 @@ namespace Encrypter
             while (input.IndexOf($"%{count}^?") != -1)
             {
                 byte temp = Convert.ToByte(Convert.ToInt32(input.Substring(0, input.IndexOf($"%{count}^?"))) - count);
+                //MessageBox.Show(temp.ToString());
                 output += Convert.ToChar(temp);
                 input = input.Remove(0, input.IndexOf($"%{count}^?") + 3 + count.ToString().Length);
             }