Bridge

Sensitivity Enumeration

Which differences in the strings should lead to non-zero result values.

Namespace:  System
Assembly:  Bridge (in Bridge.dll)

Syntax


[ExternalAttribute]
[EnumAttribute]
public enum Sensitivity
<ExternalAttribute> _
<EnumAttribute> _
Public Enumeration Sensitivity
[ExternalAttribute]
[EnumAttribute]
public enum class Sensitivity

Members


Member nameDescription
Base Only strings that differ in base letters compare as unequal. Examples: a ≠ b, a = á, a = A.
Accent Only strings that differ in base letters or accents and other diacritic marks compare as unequal. Examples: a ≠ b, a ≠ á, a = A.
Case Only strings that differ in base letters or case compare as unequal. Examples: a ≠ b, a = á, a ≠ A.
Variant Strings that differ in base letters, accents and other diacritic marks, or case compare as unequal. Other differences may also be taken into consideration. Examples: a ≠ b, a ≠ á, a ≠ A.