This code should work
var d = new Dictionary<string,string>();
d.Add("a", "b");
d.Add("c", "d");
foreach (var e in d)
{
if (d.Remove(e.Key + "Sibling")) break;
}
From dotnet/coreclr#17196 (comment)
/cc @danmosemsft Just so it doesn't fall off the radar
This code should work
From dotnet/coreclr#17196 (comment)
/cc @danmosemsft Just so it doesn't fall off the radar