Class Among
Snowball's among construction.
public sealed class Among
- Inheritance
-
Among
- Inherited Members
Constructors
Among(string, int, int)
Initializes a new instance of the Among class.
public Among(string str, int index, int result)
Parameters
strstringThe search string.
indexintThe index to the longest matching substring.
resultintThe result of the lookup.
Among(string, int, int, Func<bool>?)
Initializes a new instance of the Among class.
public Among(string str, int index, int result, Func<bool>? action)
Parameters
strstringThe search string.
indexintThe index to the longest matching substring.
resultintThe result of the lookup.
actionFunc<bool>The action to be performed, if any.
Properties
Action
Action to be invoked.
public Func<bool>? Action { get; }
Property Value
MatchIndex
Index to longest matching substring.
public int MatchIndex { get; }
Property Value
Result
Result of the lookup.
public int Result { get; }
Property Value
SearchString
Search string.
public string SearchString { get; }
Property Value
Methods
ToString()
Returns a string that represents this instance.
public override string ToString()