Table of Contents

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

other LazyEncodedString

An object to compare with this object.

Returns

bool

true if the current object is equal to the other parameter; otherwise, false.

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

other string

An object to compare with this object.

Returns

bool

true if the current object is equal to the other parameter; otherwise, false.

Equals(object?)

Determines whether the specified object is equal to the current object.

public override bool Equals(object? obj)

Parameters

obj object

The object to compare with the current object.

Returns

bool

true if the specified object is equal to the current object; otherwise, false.