示例#1
0
 public bool TryGetAndPinValue(object key, out LookupMatches matches, out IDisposable cleanupRef)
 {
     return(this.m_table.TryGetAndPin(key, out matches, out cleanupRef));
 }
示例#2
0
 public IDisposable AddAndPin(object key, LookupMatches matches)
 {
     return(this.m_table.AddAndPin(key, matches));
 }
示例#3
0
 public bool TryGetValue(object key, out LookupMatches matches)
 {
     return(this.m_table.TryGetValue(key, out matches));
 }