7 references to TryGetValue
Microsoft.VisualStudio.LanguageServices (7)
Options\VisualStudioSettingsOptionPersister.cs (7)
91return TryGetValue(storageKey, out int value) ? Enum.ToObject(storageType, value) : default(Optional<object?>); 96if (TryGetValue(storageKey, out int? nullableValue)) 100else if (TryGetValue(storageKey, out int value)) 112if (TryGetValue(storageKey, out string value)) 129if (TryGetValue(storageKey, out string value)) 172=> TryGetValue(storageKey, out T value) ? value : default(Optional<object?>); 175=> TryGetValue(storageKey, out T[] value) ? (value is null ? default : value.ToImmutableArray()) : default(Optional<object?>);