It’s not that writing posts in WordPress is hard, but i just have a feeling that Live Writer might make me write more often
. Writing these first lines seems to be a pleasant experience so far. And i would really like to publish some stuff about things that i have been working with and that i found to be quite interesting … NServiceBus , NHibernate and other goodies … will see how it goes.
Code snippet test
1: /// <summary>
2: /// Execute action <paramref name="numberOfTimes"/> times
3: /// </summary>
4: /// <param name="numberOfTimes">Number of times to execute action</param>
5: /// <param name="action">Action to execute</param>
6: public static void Times(this int numberOfTimes, Action<int> action)
7: {
8: Check.NotNull(action, "action");
9: for (int i = 0; i < numberOfTimes; i++)
10: action(i);
11: }
12: