// Token: 0x06006480 RID: 25728 RVA: 0x00154D4C File Offset: 0x00152F4C
        void IBindableVector.Clear()
        {
            IBindableVector ibindableVectorNoThrow = this.GetIBindableVectorNoThrow();

            if (ibindableVectorNoThrow != null)
            {
                ibindableVectorNoThrow.Clear();
                return;
            }
            this.GetVectorOfT().Clear();
        }
Ejemplo n.º 2
0
        void IBindableVector.Clear()
        {
            IBindableVector bindableVector = GetIBindableVectorNoThrow();

            if (bindableVector != null)
            {
                // IBindableVector -> IBindableVector
                bindableVector.Clear();
            }
            else
            {
                // IBindableVector -> IVector<T>
                GetVectorOfT().Clear();
            }
        }
Ejemplo n.º 3
0
        // void Clear()
        internal void Clear()
        {
            IBindableVector _this = Unsafe.As <IBindableVector>(this);

            _this.Clear();
        }
Ejemplo n.º 4
0
        internal void Clear()
        {
            IBindableVector _this = JitHelpers.UnsafeCast <IBindableVector>(this);

            _this.Clear();
        }
Ejemplo n.º 5
0
        internal void Clear()
        {
            IBindableVector bindableVector = JitHelpers.UnsafeCast <IBindableVector>(this);

            bindableVector.Clear();
        }