Method Equals
- Namespace
- Ubiquity.NET.InteropHelpers
- Assembly
- Ubiquity.NET.InteropHelpers.dll
Equals(LazyEncodedString?)
Indicates whether the current object is equal to another object of the same type.
public bool Equals(LazyEncodedString? other)
Parameters
otherLazyEncodedStringAn object to compare with this object.
Returns
Remarks
May incur the cost of conversion to native if both strings don't have the same form. If both have, a managed representation already that is used, otherwise the native data is used for the comparison. This only performs an ordinal comparison of the values.
Equals(string?)
Indicates whether the current object is equal to another object of the same type.
public bool Equals(string? other)
Parameters
otherstringAn object to compare with this object.
Returns
Equals(object?)
Determines whether the specified object is equal to the current object.
public override bool Equals(object? obj)
Parameters
objobjectThe object to compare with the current object.