blah blah blah is here! blah blah » Close

0
votes
1 answers

C# Search first serveral characters of strings of a genric list using binary search

I have a generic list. The list is sorted. ================================================ List<string> li = new List<string>(); li.Add("Hello"); li.Add("HelloGuy"); li.Add("Zoom"); li.Add( ...

Feedback