Esempio n. 1
0
 void IList.Remove(object value)
 {
     if (!CollectionWrapper <T> .IsCompatibleObject(value))
     {
         return;
     }
     this.Remove((T)value);
 }
Esempio n. 2
0
 bool IList.Contains(object value)
 {
     if (CollectionWrapper <T> .IsCompatibleObject(value))
     {
         return(this.Contains((T)value));
     }
     return(false);
 }
Esempio n. 3
0
 private static void VerifyValueType(object value)
 {
     if (!CollectionWrapper <T> .IsCompatibleObject(value))
     {
         throw new ArgumentException(
                   "The value '{0}' is not of type '{1}' and cannot be used in this generic collection.".FormatWith(
                       (IFormatProvider)CultureInfo.InvariantCulture, value, (object)typeof(T)), nameof(value));
     }
 }
Esempio n. 4
0
 int IList.IndexOf(object value)
 {
     if (this._genericCollection != null)
     {
         throw new InvalidOperationException("Wrapped ICollection<T> does not support IndexOf.");
     }
     if (CollectionWrapper <T> .IsCompatibleObject(value))
     {
         return(this._list.IndexOf((object)(T)value));
     }
     return(-1);
 }