예제 #1
0
 public bool TryUpdate(WeakDictionary <object, int, object> d, Tuple <object, int> k, object newValue, object comparisonValue)
 {
     return(d.TryUpdate(k.Item1, k.Item2, newValue, comparisonValue));
 }
예제 #2
0
 public bool TryUpdate(WeakDictionary <int, object> d, int k, object newValue, object comparisonValue)
 {
     return(d.TryUpdate(k, newValue, comparisonValue));
 }