예제 #1
0
파일: Rotor.cs 프로젝트: bezzad/Enigma
 public Rotor(int seed = 1)
 {
     Rand       = new Random(seed);
     RotorChars = new string(Alphabets.OrderBy(x => Rand.Next()).ToArray());
 }