You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Gets a ref to a <typeparamref name="TValue"/> in the <see cref="Dictionary{TKey, TValue}"/>.
24
+
/// </summary>
25
+
/// <param name="dictionary">The dictionary to get the ref to <typeparamref name="TValue"/> from.</param>
26
+
/// <param name="key">The key used for lookup.</param>
27
+
/// <remarks>Items should not be added or removed from the <see cref="Dictionary{TKey, TValue}"/> while the ref <typeparamref name="TValue"/> is in use.</remarks>
28
+
/// <exception cref="KeyNotFoundException">Thrown when <paramref name="key"/> does not exist in the <paramref name="dictionary"/>.</exception>
/// Gets either a ref to a <typeparamref name="TValue"/> in the <see cref="Dictionary{TKey, TValue}"/> or a ref null if it does not exist in the <paramref name="dictionary"/>.
Copy file name to clipboardExpand all lines: src/libraries/System.Runtime.InteropServices/tests/System/Runtime/InteropServices/CollectionsMarshalTests.cs
+153Lines changed: 153 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -144,6 +144,159 @@ public void ListAsSpanLinkBreaksOnResize()
0 commit comments