System\Collections\Generic\OrderedDictionary.cs (4)
380bool modified = TryInsert(index: -1, key, value, InsertionBehavior.OverwriteExisting, out _);
489TryInsert(index: -1, key, value, InsertionBehavior.ThrowOnExisting, out _);
509return TryInsert(index: -1, key, value, InsertionBehavior.IgnoreInsertion, out index);
732TryInsert(index, key, value, InsertionBehavior.ThrowOnExisting, out _);