コード例 #1
0
 bool IIdentifier <T> .TryGetValue(ulong code, out T item)
 {
     lock (_gate)
     {
         return(_inner.TryGetValue(code, out item));
     }
 }
コード例 #2
0
 bool IIdentifier <T> .TryGetValue(ulong code, out T item) => _inner.TryGetValue(code, out item);