8 implementations of TryGetKey
Microsoft.Build.Framework (1)
ImmutableSegmentedDictionary`2.cs (1)
256public bool TryGetKey(TKey equalKey, out TKey actualKey)
Microsoft.CodeAnalysis (1)
src\Dependencies\Collections\ImmutableSegmentedDictionary`2.cs (1)
244public bool TryGetKey(TKey equalKey, out TKey actualKey)
Microsoft.CodeAnalysis.CodeStyle (1)
src\Dependencies\Collections\ImmutableSegmentedDictionary`2.cs (1)
244public bool TryGetKey(TKey equalKey, out TKey actualKey)
Microsoft.CodeAnalysis.Collections.Package (1)
ImmutableSegmentedDictionary`2.cs (1)
244public bool TryGetKey(TKey equalKey, out TKey actualKey)
Microsoft.CodeAnalysis.Workspaces (1)
src\Dependencies\Collections\ImmutableSegmentedDictionary`2.cs (1)
244public bool TryGetKey(TKey equalKey, out TKey actualKey)
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (1)
src\Dependencies\Collections\ImmutableSegmentedDictionary`2.cs (1)
244public bool TryGetKey(TKey equalKey, out TKey actualKey)
System.Collections.Immutable (2)
System\Collections\Immutable\ImmutableDictionary_2.cs (1)
416public bool TryGetKey(TKey equalKey, out TKey actualKey)
System\Collections\Immutable\ImmutableSortedDictionary_2.cs (1)
457public bool TryGetKey(TKey equalKey, out TKey actualKey)
3 references to TryGetKey
Microsoft.CodeAnalysis.UnitTests (3)
Collections\ImmutableDictionaryTestBase.cs (3)
227Assert.True(dictionary.TryGetKey("a", out string actualKey)); 230Assert.True(dictionary.TryGetKey("A", out actualKey)); 233Assert.False(dictionary.TryGetKey("b", out actualKey));