public bool Equals(ArrayMappingModel other) { if (other == null) { return(false); } return(this.Address.Equals(other.Address)); }
public static IClrObjMappingModel[] ToArray([CanBeNull] ArrayMappingModel model) { return(ArrayIsNullOrEmpty(model) ? new IClrObjMappingModel[0] : model.Elements.ToArray()); }