public bool Equals(CipherSize other) { return(this.MinSize == other.MinSize && this.MaxSize == other.MaxSize && this.Skip == other.Skip); }
public PasswordGenerator() { this.CipherSize = new CipherSize(1, 2048, 1); }