Open-source Functional Language Extensions to C# 6
Lang Ext, an open-source library for C# written by London-based Paul Louth, provides a set of helper functions and types that aim to "bring some of the functional world into C#" while trying to look like extensions to the language itself.
http://www.infoq.com/news/2014/11/lang-ext-csharp-functional-exts
#programowanie #csharp
#msqspam
Lang Ext, an open-source library for C# written by London-based Paul Louth, provides a set of helper functions and types that aim to "bring some of the functional world into C#" while trying to look like extensions to the language itself.
http://www.infoq.com/news/2014/11/lang-ext-csharp-functional-exts
#programowanie #csharp
#msqspam


















#naukaprogramowania #programowanie #csharp
{
Console.WriteLine("podaj nr miesiąca: ");
int msc = Convert.ToInt32(Console.ReadLine());
if(msc > 0)
{
if(msc <= 12)
{
Console.WriteLine("podałeś miesiąc: {0}", msc);
break;
goto koniec;
}
}
}
Console.WriteLine("Ty głupi #!$%@?, nie potrafisz podać miesiąca");
Console.WriteLine("!!!!!! UMRZYJ !!!!!");
koniec:
Console.ReadKey();