Beispiel #1
0
        int IList.Add(object value)
        {
            Class183 <T> .smethod_0(value);

            this.Add((T)value);
            return(this.Count - 1);
        }
Beispiel #2
0
        void IList.Insert(int index, object value)
        {
            if (this.icollection_0 != null)
            {
                throw new InvalidOperationException("Wrapped ICollection<T> does not support Insert.");
            }
            Class183 <T> .smethod_0(value);

            this.ilist_0.Insert(index, (T)value);
        }
Beispiel #3
0
        object IList.this[int index]
        {
            get
            {
                if (this.icollection_0 != null)
                {
                    throw new InvalidOperationException("Wrapped ICollection<T> does not support indexer.");
                }
                return(this.ilist_0[index]);
            }
            set
            {
                if (this.icollection_0 != null)
                {
                    throw new InvalidOperationException("Wrapped ICollection<T> does not support indexer.");
                }
                Class183 <T> .smethod_0(value);

                this.ilist_0[index] = (T)value;
            }
        }