I'd like to check for equality among two objects that have no Public Properties. However, I don't want to override the Equals & GetHashCode method, or implement IEquatable. For example, consider the following code:
class Program
{
static void Main(string[] args)
{
Guid id = Guid.NewGuid();
string personName = "MyName";
MyClass object1 = new MyClass(id, personName);
MyClass object2 = new MyClass(id, personName);
//This returns false, but I'd like it to return true:
Console.WriteLine(object1.Equals(object2));
//[edit]...by using, for example:
Console.WriteLine(ObjectsAreEqual(object1, object2));
}
}
class MyClass
{
private Guid _id;
private string _personName;
public MyClass(Guid id, string personName)
{
_id = id;
_personName = personName;
}
}
I know the standard method is to override Equals & GetHashCode, but for various reasons, I don't want to change any code in the class. Plus, there are no public properties, so I can't compare these. Is there any other way of implementing this?
For example, via reflection? Or perhaps by serialising the Objects to JSON, and comparing the resulting strings?
Thanks.