Interface IFindStringComparer
Defines an interface for providing alternative string comparison methods used in the FindString functionality.
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public interface IFindStringComparer
Methods
Compare(String, String)
Compares two strings according to the implementation's specific logic.
Declaration
bool Compare(string x, string y)
Parameters
System.String
x
The first string to compare. |
System.String
y
The second string to compare. |
Returns
System.Boolean
true if the strings match according to the comparison logic; otherwise, false. |