Enum LevenshteinOptions
[Flags]
public enum LevenshteinOptions
Fields
AutoComplete = 256A will be treated as a value being searched for by B. Treats extra letters after B as untyped instead of missing (they don't count towards the distance).
IgnoreCase = 1Ignores the casing of the two strings when comparing characters.
IgnorePunctuation = 10Ignores any characters that fall under IsPunctuation(char).
IgnoreWhitespace = 6Ignores any characters that fall under IsWhiteSpace(char).