7 references to TryGetValue
Microsoft.VisualStudio.LanguageServices (7)
Options\VisualStudioSettingsOptionPersister.cs (7)
91
return
TryGetValue
(storageKey, out int value) ? Enum.ToObject(storageType, value) : default(Optional<object?>);
96
if (
TryGetValue
(storageKey, out int? nullableValue))
100
else if (
TryGetValue
(storageKey, out int value))
112
if (
TryGetValue
(storageKey, out string value))
129
if (
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?>);