Feeds:
Posts
Comments

Archive for April, 2008

This tool compiles all of an assembly language into native CPU instructions and saves this file to a disk. At run time when the assembly is loaded, the CLR checks To see whether any precompiled version of the assembly exists, if it exists then the CLR loads this precompiled version so that no code compilation [...]

Read Full Post »

The is operator checks whether an object is compatible with a given type, and the result of the evaluation is a Boolean: true or false. The is operator will never throw an exception. The following code demonstrates:
 
Object o = new Object();
            Boolean b1 = (o is Object); // b1 is true.
            Boolean b2 = (o [...]

Read Full Post »

Over the Top

Over the Top

This weekend after stopping several books in the middle I happen to came over with the Zig Ziglars new book “Over the Top”. This is the first time I am reading a book of this author. Initially I thought this is a kind of one of several books on personality development will give [...]

Read Full Post »

Namespaces allow for the logical grouping of related types. For example System.Web.UI relates all the types related to the web. i.e it provides classes and interfaces that helps us in building ASP.NET server controls and ASP.NET web pages that form the user interface of the web application. Similarly System.Windows.Forms namespace will contain all the classes required for [...]

Read Full Post »