7 references to TryGetValue
Microsoft.VisualStudio.LanguageServices (7)
Options\VisualStudioSettingsOptionPersister.cs (7)
88return TryGetValue(storageKey, out int value) ? Enum.ToObject(storageType, value) : default(Optional<object?>); 93if (TryGetValue(storageKey, out int? nullableValue)) 97else if (TryGetValue(storageKey, out int value)) 109if (TryGetValue(storageKey, out string value)) 126if (TryGetValue(storageKey, out string value)) 169=> TryGetValue(storageKey, out T value) ? value : default(Optional<object?>); 172=> TryGetValue(storageKey, out T[] value) ? (value is null ? default : value.ToImmutableArray()) : default(Optional<object?>);