protected BaseRadLibService(RadLibConfiguration config)
 {
 }
示例#2
0
 public RadLibConfiguration(RadLibConfiguration other)
 {
     this.TagOpener  = other.TagOpener;
     this.TagCloser  = other.TagCloser;
     this.RandomSeed = other.RandomSeed;
 }
 public RadLibService(RadLibConfiguration config) : base(config)
 {
     this.rnd       = config.RandomSeed == 0 ? new Random() : new Random(config.RandomSeed);
     this.TagCloser = config.TagCloser;
     this.TagOpener = config.TagOpener;
 }