Ich versuche, zwei Strukturen in C# mit dem Operator equals (==) zu vergleichen. Meine Struktur sieht so aus:
public struct CisSettings : IEquatable
{
public int Gain { get; private set; }
public int Offset { get; private set; }
public int Bright { get; private set; }
public int Contrast { get; private set; }
public CisSettings(int gain, int offset, int bright, int contrast) : this()
{
Gain = gain;
Offset = offset;
Bright = bright;
Contrast = contrast;
}
public bool Equals(CisSettings other)
{
return Equals(other, this);
}
public override bool Equals(object obj)
{
if (obj == null || GetType() != obj.GetType())
{
return false;
}
var objectToCompareWith = (CisSettings) obj;
return objectToCompareWith.Bright == Bright && objectToCompareWith.Contrast == Contrast &&
objectToCompareWith.Gain == Gain && objectToCompareWith.Offset == Offset;
}
public override int GetHashCode()
{
var calculation = Gain + Offset + Bright + Contrast;
return calculation.GetHashCode();
}
}
Ich versuche, die Struktur als Eigenschaft in meiner Klasse zu haben und möchte überprüfen, ob die Struktur gleich dem Wert ist, dem ich sie zuweisen möchte, bevor ich dies tue, damit ich nicht angebe, dass sich die Eigenschaft geändert hat, wenn dies nicht der Fall ist, wie folgt:
public CisSettings TopCisSettings
{
get { return _topCisSettings; }
set
{
if (_topCisSettings == value)
{
return;
}
_topCisSettings = value;
OnPropertyChanged("TopCisSettings");
}
}
Auf der Zeile, wo ich die Gleichheit prüfe, erhalte ich diesen Fehler:
Operator '==' cannot be applied to operands of type 'CisSettings' and 'CisSettings'
Ich kann nicht herausfinden, warum das passiert, könnte mir jemand in die richtige Richtung weisen?