1 write to keyToIndex
Microsoft.NET.ProjectData (1)
Model\KeySchema.cs (1)
34
this.
keyToIndex
= map.ToFrozenDictionary(comparer);
2 references to keyToIndex
Microsoft.NET.ProjectData (2)
Model\KeySchema.cs (2)
50
public bool TryGetIndex(string key, out int index) => this.
keyToIndex
.TryGetValue(key, out index);
55
public int GetIndexOrNegativeOne(string key) => this.
keyToIndex
.TryGetValue(key, out int index) ? index : -1;