コード例 #1
0
        public static void Declare(string name, int seed)
        {
            InitableRandom rand = new InitableRandom(seed);

            dict[name] = rand; //
        }
コード例 #2
0
ファイル: RandomPool.cs プロジェクト: udonka/OpinionSharing
 public static void Declare(string name, int seed)
 {
     InitableRandom rand = new InitableRandom(seed);
     dict[name] = rand; //
 }