示例#1
0
        public TranscriptRng(Transcript strobe)
        {
            if (_rnd == null)
            {
                _rnd = new Random();
            }

            _strobe      = strobe;
            _strobeBytes = Transcript.StringToByteArray(strobe._obj.DebugPrintState());
            _pointer     = 0;
        }
示例#2
0
 public TranscriptRngBuilder(Transcript strobe)
 {
     _strobe = strobe;
 }