Mike-Ward.Net

Pretty Printing Collections in C#

The combination of Extension Methods and LINQ can make everyday tedious programming chores a bit less annoying. Take formatting an array of strings.

static void Main()
{
    string[] languages = { "English", "German", "Portuguese", "Swedish" };
    Console.WriteLine(languages.Aggregate((n, n1) => n + ", " + n1));
}

Output:

English, German, Portuguese, Swedish

I know, it’s a little thing, but is sure is convenient. OK, your turn. What’s your favorite little extension method or LINQ snippet?

← newer older →
.Net, Technology, Life, Whatever

Recent Posts

Checklist Buddy Available for Testing
Tweetz 2.0.0 Released
Tweetz 2.0 Beta
VSColorOutput 2.7 - Time Stamps
Fixed Focal-Length Eyeglasses, a Programmer's Best Friend
How to Choose the Right VPN Service
Two Handy Command Line Scripts
More... (1089)

Donate