public object SetPoolBorrowReturn() { var set = SetPool.Borrow <string>(); SetPool.Return(set); return(set); }
public object NewSetPoolBorrowReturnUnionWithStrings() { var set = SetPool.Borrow <string>(); set.UnionWith(Strings); SetPool.Return(set); return(set); }