DefinitionalObject.AreSameDefinition Method (Object, Object) |
Determines if two objects have the same definition or are both null.
Namespace:
AGI.Foundation.Infrastructure
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic static bool AreSameDefinition(
Object first,
Object second
)
Public Shared Function AreSameDefinition (
first As Object,
second As Object
) As Boolean
public:
static bool AreSameDefinition(
Object^ first,
Object^ second
)
static member AreSameDefinition :
first : Object *
second : Object -> bool
Parameters
- first
- Type: System.Object
The first object, which may be null. - second
- Type: System.Object
The second object, which may be null.
Return Value
Type:
Booleantrue if the two objects have the same definition; otherwise
false.
Remarks
See Also