GetHashCode()
関数がコード which を使用して何かを返す場合、特別な意味がありcontains ^ symbol
ますか?
public class ClassProp
{
public int Prop1 { get; set; }
public int Prop2 { get; set; }
public int Prop3 { get; set; }
public int Prop4 { get; set; }
public int Prop5 { get; set; }
public override int GetHashCode()
{
return Prop1.GetHashCode() ^ Prop2.GetHashCode() ^
Prop3.GetHashCode() ^ Prop4.GetHashCode() ^ Prop5.GetHashCode();
}
}