What algorithm .Net use for searching a pattern in a string?
- by Hun1Ahpu
I'm studying string searching algorithms now and wondering what algorithm is used for .NET String.Contains function for example.
Reflector shows that this function is used but I have no idea what its name means.
private static extern int InternalFindNLSStringEx(IntPtr handle, string localeName, int flags, string source, int sourceCount, int startIndex, string target, int targetCount);