bool IIdentifier <T> .TryGetValue(ulong code, out T item) { lock (_gate) { return(_inner.TryGetValue(code, out item)); } }
bool IIdentifier <T> .TryGetValue(ulong code, out T item) => _inner.TryGetValue(code, out item);