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
There are numerous new features coming with .NET 4.5 and here, on this blog, you can find several posts about it. But the feature we are goint to talk about today is very exciting, because we were waiting for it more than 10 years. Since .NET 1.0 the memory limit of .NET object is 2GB. This means you cannot for example create array which contains elements with more than 2GB in total. If try to create such array, you will get the OutOfMemoryException. Let’s see an example how to produce OutOfMemoryException. Before that Open Visual Studio 2012, and create C# Console Application, like picture below. First lets create simple struct with two double members like example below: 1 2 3 4 5 6 7 8 9 10 11 12 public struct ComplexNumber { public double Re; public double Im; public ComplexNumber( double re, double im) { ...
Comments
Post a Comment