// Token: 0x0600647F RID: 25727 RVA: 0x00154D20 File Offset: 0x00152F20 void IBindableVector.RemoveAtEnd() { IBindableVector ibindableVectorNoThrow = this.GetIBindableVectorNoThrow(); if (ibindableVectorNoThrow != null) { ibindableVectorNoThrow.RemoveAtEnd(); return; } this.GetVectorOfT().RemoveAtEnd(); }
void IBindableVector.RemoveAtEnd() { IBindableVector bindableVector = GetIBindableVectorNoThrow(); if (bindableVector != null) { // IBindableVector -> IBindableVector bindableVector.RemoveAtEnd(); } else { // IBindableVector -> IVector<T> GetVectorOfT().RemoveAtEnd(); } }