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
@@ -56,7 +57,14 @@ public void Add(TKey key, TVal value)
56
57
base.Add(newKeyValuePair<TKey,TVal>(key,value));
57
58
}
58
59
59
-
publicboolTryGetValue(TKeykey,outTValvalue)
60
+
#pragma warning disable CS8767// Nullability of reference types in type of parameter doesn't match implicitly implemented member (possibly because of nullability attributes).
61
+
// Justification for warning disabled: IDictionary is missing [MaybeNullWhen(false)] in Netstandard 2.1
62
+
publicboolTryGetValue(TKeykey,
63
+
#pragma warning restore CS8767// Nullability of reference types in type of parameter doesn't match implicitly implemented member (possibly because of nullability attributes).
0 commit comments