Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Extension method: bool DictionaryEqual<TK, TV>(this IDictionary<TK, TV>, IDictionary<TK, TV>)

Declaration

public static bool DictionaryEqual<TK, TV>(
    this IDictionary<TK, TV> dictA,
    IDictionary<TK, TV> dictB
)

Summary

Compares two dictionaries for equality, member-wise. Two dictionaries are equal if they contain all the same key-value pairs.

Generic type parameters

TKThis type parameter is not documented.
TV
  • Must derive from: System.IEquatable<TV>.
This type parameter is not documented.