J'ai une structure en C #:
public struct UserInfo
{
public string str1
{
get;
set;
}
public string str2
{
get;
set;
}
}
La seule règle est que UserInfo(str1="AA", str2="BB").Equals(UserInfo(str1="BB", str2="AA"))
Comment remplacer la fonction GetHashCode pour cette structure?