OidExtensionsEquals2 Method |
Compares two Oid objects for equality.
Namespace:
SysadminsLV.PKI.Utils.CLRExtensions
Assembly:
SysadminsLV.PKI (in SysadminsLV.PKI.dll) Version: 3.7.0.0 (3.7.0.0)
Syntax public static bool Equals2(
this Oid oid,
Oid other
)
<ExtensionAttribute>
Public Shared Function Equals2 (
oid As Oid,
other As Oid
) As Boolean
public:
[ExtensionAttribute]
static bool Equals2(
Oid^ oid,
Oid^ other
)
[<ExtensionAttribute>]
static member Equals2 :
oid : Oid *
other : Oid -> bool
Parameters
- oid
- Type: System.Security.CryptographyOid
Source OID - other
- Type: System.Security.CryptographyOid
An Oid object to compare to the current object.
Return Value
Type:
BooleanTrue if
Value members of two OID instances are equal.
This method is case-insensitive.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Oid. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
Remarks Original Oid class do not override Equals(Object) method.
See Also