示例#1
0
文件: Rotor.cs 项目: bezzad/Enigma
 public Rotor(int seed = 1)
 {
     Rand       = new Random(seed);
     RotorChars = new string(Alphabets.OrderBy(x => Rand.Next()).ToArray());
 }