Method | Description | |
---|---|---|
AreEqual ( object object1, object object2 ) : bool |
Checks whether the 2 specified objects are equal. This method is better, simple because it also checks boxing so 2 integers with the same values that are boxed are equal.
|
|
AreEqualReferences ( object object1, object object2 ) : bool |
Checks whether the 2 specified objects are equal references. This method is better, simple because it also checks boxing so 2 integers with the same values that are boxed are equal.
|
|
IsNull ( object obj ) : bool |
Determines whether the specified object is
|
public static AreEqual ( object object1, object object2 ) : bool | ||
object1 | object | The first object. |
object2 | object | The second object. |
return | bool |
public static AreEqualReferences ( object object1, object object2 ) : bool | ||
object1 | object | The first object. |
object2 | object | The second object. |
return | bool |
public static IsNull ( object obj ) : bool | ||
obj | object | The object to chec.. |
return | bool |