Click or drag to resize

CommonSubstringGetCommonSubstringT(IListIListT) Method

Gets the common substring.

Namespace: Altaxo.Collections.Text
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public List<T> GetCommonSubstring<T>(
	IList<IList<T>> words
)

Parameters

words  IListIListT
The words that were originally used to build the common substring query. If the original words were strings, please use this this overloaded version of the function.

Type Parameters

T
Type of the characters of the original words that are used to build the common substring query.

Return Value

ListT
The common substring that is represented by this instance.
See Also