Αύγουστος 2007 - Δημοσιεύσεις

Throw command difference in C# and VB.NET

Have you ever noticed that throw command behaves somewhat differently in VB.NET and C#? See the following two code parts. It's the same thing written in VB.NET and C#. DummyMethod throws an exception (line 12) that is caught by a try/catch statement in the Main method. Line 7 writes the exception into the console window. 1: static void Main( string [] args) { 2: try 3: { DummyMethod(); } 4: catch (Exception ex) 5: { Console.WriteLine(ex); 6: } 7: Console.ReadKey(); 8: } 9: 10: private static void DummyMethod()

Διαβάστε περισσότερα »

DotNetNuke did it again!

In general, I'm a great fun of DotNetNuke , the free, Open Source Framework for creating web portals. It is very powerful and easy to use. However it is full of bugs! Yes, it is. Most propably this is because the DNN team releases a new version once every couple of months! No to mention the intermediate relaeses of specific modules. You don't have to take my word for it. See the downloads page of the project. From January of 2007 there has been 5 releases! That is one release every 37 days ! Currently, in my

Διαβάστε περισσότερα »