public override void SetValue(UciOption other)
        {
            if (GetType() != other.GetType())
            {
                throw new ArgumentException("Option type different");
            }

            Value = ((CheckUciOption)other).Value;
        }
Exemplo n.º 2
0
 public abstract void SetValue(UciOption other);