DefinitionalObject.AreSameDefinition Method (Int32, Int32) |
Determines if two integers have the same definition. This overload simply checks equality and is provided for convenience.
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(
int first,
int second
)
Public Shared Function AreSameDefinition (
first As Integer,
second As Integer
) As Boolean
public:
static bool AreSameDefinition(
int first,
int second
)
static member AreSameDefinition :
first : int *
second : int -> bool
Parameters
- first
- Type: System.Int32
The first integer. - second
- Type: System.Int32
The second integer.
Return Value
Type:
Booleantrue if the two integers have the same definition; otherwise
false.
See Also