↧
List(T).BinarySearch in C#
I think most of us are quite familiar with binary search. Binary search is an algorithm for locating the position of an element in a sorted list by checking the middle, eliminating half of the list...
View ArticleC# Code Snippet: List.ForEach method
Do you ever use the List(T).ForEach Method in C#, if never, you’d better read this. The syntax is : public void ForEach(Action<T> action) 1: static void Main() 2: { 3: List<long> myList =...
View Article