我有一个通用函数(对象,对象(,一个参数可以是new((当我尝试将对象与new((进行比较时,它始终是错误的。
public static void TestFunction<T>(object requestData, object storedData) where T : class, new()
{
if (requestData != null && storedData != null)
if (requestData?.GetType().Name != storedData?.GetType().Name)
{ throw new Exception("object types are not match"); return; }
if (requestData == null) throw new Exception("request can not be null");
```
//storedData might be new T()
// but even i am creating new objects to compare inside function - no luck
```
object o = (T)Activator.CreateInstance(typeof(T));
object o1 = (T)Activator.CreateInstance(typeof(T));
object o2 = new T();
T test = new T();
```//all return false
o.Equals(o1).Dump();
test.Equals(new T()).Dump();
o2.Equals(o).Dump();
}
我希望比较是正确的。
默认对象比较总是通过参考指针。 new T()
始终将有一个新的参考。