Good article that explains lambda expressions:
http://www.developingfor.net/c-30/upgrade-your-c-skills-part-3-lambda-expressions.html
Подключаем длинную линию 1-wire к Ардуино
1 hour ago
Collection of recipes that I've used during code cooking.
namespace ExtensionMethods
{
public static class MyExtensions
{
public static int WordCount(this String str)
{
return str.Split(new char[] { ' ', '.', '?' }, StringSplitOptions.RemoveEmptyEntries).Length;
}
}
}
string s = "Hello Extension Methods";
int i = s.WordCount();