Exemple #1
0
        public bool Equals(ArrayMappingModel other)
        {
            if (other == null)
            {
                return(false);
            }

            return(this.Address.Equals(other.Address));
        }
Exemple #2
0
 public static IClrObjMappingModel[] ToArray([CanBeNull] ArrayMappingModel model)
 {
     return(ArrayIsNullOrEmpty(model) ? new IClrObjMappingModel[0] : model.Elements.ToArray());
 }