// 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(); }
void IBindableVector.Clear() { IBindableVector bindableVector = GetIBindableVectorNoThrow(); if (bindableVector != null) { // IBindableVector -> IBindableVector bindableVector.Clear(); } else { // IBindableVector -> IVector<T> GetVectorOfT().Clear(); } }
// void Clear() internal void Clear() { IBindableVector _this = Unsafe.As <IBindableVector>(this); _this.Clear(); }
internal void Clear() { IBindableVector _this = JitHelpers.UnsafeCast <IBindableVector>(this); _this.Clear(); }
internal void Clear() { IBindableVector bindableVector = JitHelpers.UnsafeCast <IBindableVector>(this); bindableVector.Clear(); }