Yes, its true, earlier i was using a paid hosting service to host my personal resume web page. I paid 5K+, hosting was on windows server. I though I will use the server for deploying my test project on host servers I did it couple of times but most of the time only my web resume was there. I analyse my needs and come to a conclusion that to host only we small web page, I should not pay 5K. That was the time I started searching for a web hosting services which is free and add free. I came across few free and add free services and the best of www.hostinger.in here I am describing the features we get in free account.
2000 MB Disk Space
100 GB Bandwidth
2 MySQL Databases
2 E-mails Accounts
Website Builder
Script Autoinstaller
Anyone who uses LINQ (or lambdas in general) and the debugger will quickly discover the dreaded message “Expression cannot contain lambda expressions”. Lack of lambda support has been a limitation of the Visual Studio Debugger ever since Lambdas were added to C# and Visual Basic. With visual studio 2015 Microsoft has added support for debugging lambda expressions. Let’s first look at an example, and then I’ll walk you through current limitations. Example To try this yourself, create a new C# Console app with this code: using System.Diagnostics; using System.Linq; class Program { static void Main() { float[] values = Enumerable.Range(0, 100).Select(i => (float)i / 10).ToArray(); Debugger.Break(); } } Then compile, start debugging, and add “values.Where(v => (int)v == 3).ToArray()” in the Watch window. You’ll be happy to see the same as what the screenshot above shows you. I am using Visual Studio 2015 Preview and it has some limitati...
Comments
Post a Comment