DefinitionalObject.AreSameDefinition Method (IEquatableDefinition, 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(
IEquatableDefinition first,
Object second
)
Public Shared Function AreSameDefinition (
first As IEquatableDefinition,
second As Object
) As Boolean
public:
static bool AreSameDefinition(
IEquatableDefinition^ first,
Object^ second
)
static member AreSameDefinition :
first : IEquatableDefinition *
second : Object -> bool
Parameters
- first
- Type: AGI.Foundation.Infrastructure.IEquatableDefinition
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.
See Also