Tag Archives: array

C# Example: Split An Array into Multiple Smaller Arrays

Example * Use Lambda expression to extends Array class to include a new method called Split: public static class MyArrayExtensions { /// <summary> /// Splits an array into several smaller arrays. /// </summary> /// <typeparam name="T">The type of the array.</typeparam> … Continue reading

Posted in c# | Tagged , | Leave a comment