Click or drag to resize

StringComparisonKind Enumeration

Used to compare strings in some matcher classes.

Namespace: Altaxo
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3618.0 (4.8.3618.0)
Syntax
C#
public enum StringComparisonKind
Members
Member nameValueDescription
Equality0Is the test string and the match string equal?
Inequality1Is the test string and the match string not equal?
Contains2Is the match string contained in the string to test?
StartsWith3 Does the test string starts with the match string?
EndsWith4 Does the test string ends with the match string?

The StringComparisonKind type exposes the following members.

Extension Methods
 NameDescription
Public Extension MethodIsT Determines whether the enumeration value is equal to the specified value.
(Defined by EnumerationExtensions)
Public Extension MethodWithClearedFlagT Returns the enum value with the specified flag cleared.
(Defined by EnumerationExtensions)
Public Extension MethodWithFlagT Returns the enum value with the specified flag set or cleared, depending on the value argument.
(Defined by EnumerationExtensions)
Public Extension MethodWithSetFlagT Returns the enum value with the specified flag set.
(Defined by EnumerationExtensions)
Top
See Also