C# Class Fastenshtein.Levenshtein

Measures the difference between two strings. Uses the Levenshtein string difference algorithm.
Mostrar archivo Open project: DanHarltey/Fastenshtein Class Usage Examples

Public Methods

Method Description
Distance ( string value ) : int

Compares a value to the stored value. Not thread safe.

Levenshtein ( string value )

Creates a new instance with a value to test other values against

Private Methods

Method Description
Distance ( string value1, string value2 ) : int

Method Details

Distance() public method

Compares a value to the stored value. Not thread safe.
public Distance ( string value ) : int
value string
return int

Levenshtein() public method

Creates a new instance with a value to test other values against
public Levenshtein ( string value )
value string