/// <summary> /// Compara dos indices y devuelve true si son iguales, caso contrario, devuelve false. /// </summary> public static Boolean Compare(TableOption origen, TableOption destino) { if (destino == null) throw new ArgumentNullException("destino"); if (origen == null) throw new ArgumentNullException("origen"); if (!destino.Value.Equals(origen.Value)) return false; return true; }
/// <summary> /// Clona el objeto en una nueva instancia. /// </summary> public override ISchema Clone() { var option = new TableOption(Name, Value) { Status = Status }; return option; }