13. October 2008




Microsoft Releases Silverlight 2...

Silverlight 2.0"Microsoft Corp. today announced the availability of Silverlight 2, one of the industry’s most comprehensive and powerful solutions for the creation and delivery of applications and media experiences through a Web browser.

Silverlight 2 delivers a wide range of new features and tools that enable designers and developers to better collaborate while creating more accessible, more discoverable and more secure user experiences."

Read more: press release.


by Miguel Moreno

Category: Programming | Tags: ,

6. April 2007




Speed Test: Switch vs If-Else-If

SwitchMost of the times when I have to make the choice it really depends on the case...maybe I have only to check one or two cases, in which case, I choose if/else.

However, I knew there was some sort of performance issue with one over the other, but never really knew the details. Well, the folks at BlackWasp have doen some extensive research and determined the pro's and con's, in terms of speed, of each of these two approaches.

The .NET framework and the C# language provide two methods for conditional processing where multiple discrete values can be selected from. The switch statement is less flexible than the if-else-if ladder but is generally considered to be more efficient.

Read more: http://www.blackwasp.co.uk/...


by Miguel Moreno

Category: Programming | Tags: ,