This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class C1 | |
{ | |
[Test] | |
public void METHOD() | |
{ | |
var lookupValue1 = Lookup(new Dictionary<string, string?>(), "a"); | |
var lookupValue2 = Lookup(new Dictionary<string, string>(), "a"); | |
} | |
public LookupValue<TV> Lookup<TK, TV>(Dictionary<TK, TV?> d, TK key) |