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