StringsEquals Method
Determines whether two specified System.String objects have the same value. A parameter specifies the culture, case, and sort rules used in the comparison.
Namespace: Aliquo.CoreAssembly: Aliquo.Core (in Aliquo.Core.dll) Version: 5.0.9179.22651
public static bool Equals(
Object stringA,
Object stringB,
StringComparison comparisonType = StringComparison.OrdinalIgnoreCase
)
Public Shared Function Equals (
stringA As Object,
stringB As Object,
Optional comparisonType As StringComparison = StringComparison.OrdinalIgnoreCase
) As Boolean
- stringA Object
- The first string to compare, or .
- stringB Object
- The second string to compare, or .
- comparisonType StringComparison (Optional)
- One of the enumeration values that specifies the rules for the comparison.
Boolean if the value of the stringA parameter is equal to the value of the stringB parameter; otherwise,
.