protected BaseRadLibService(RadLibConfiguration config) { }
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; }