public GRand(UInt32 initial)
 {
     _lfsr = new LFSR(initial);
 }
 public GRand()
 {
     _lfsr = new LFSR();
 }