|
|
-
|
|
After I have introduced you the Internals of Exception handling, I have mentioned that I will cover some of the features that is coming as an improvement to it. Code Contract in .NET 4.0 is one among them. In this post, I will cover how you could use code contract in your application and also take t......
|
|
-
|
|
.NET comes with lots of new features as it introduces new features. Many of them are quite useful while others might be very specific to an issue. One of the features that came up recently with the introduction of .NET 3.5 in C# is anonymous method. Anonymous means an object with no name. Before .Ne......
|
|
-
|
|
Hi there. Reflection is one of the major library that runs over the CLR which lets you get information about a CLR type or an object during runtime. A large number of application which is built today is taking advantage of Reflection to make their 3rd party codes plugin to their application dynamica......
|
|
-
|
|
Exceptions are runtime bugs that occur due to illegal action taken by the user. The Exception occurs whenever the object state is corrupted and which causes the program to terminate. Based on the severity of the exception we choose either to continue with the program by proper handling the code or r......
|
|
-
|
|
Hi Folks,
Hope you all are good. If you are new to this post, I would recommend to red my other post too from the Internals series. In this series I am trying to cover the basic C# programming and also relate them with the compiled MSIL. In my previous post while I am going through with the inte......
|
|
-
|
|
Conversion from one type to another is the most common programming need of our daily activities. We need cast operation almost for all applications we create. Few of them require regular type conversion while other requires you to specify the cast on an expression. In BCL, there are few libraries av......
|
|
-
|
|
Practically speaking, a loop is the primary building block of a program. We use loop to repeat a set of actions for a certain interval. Now if you think of these intervals, it could be a traversal from one number (called as start index) to another number (called as end index). Very often or probably......
|
|
-
|
|
Hi folks,
It is nice to see people likes my post so much. Ever since I wrote about “Internals of Delegates” there is a large hits on my site and people wanted me to continue posting few more internals like that. Even I was thinking the same, I was confused what I should start for my next topic. ......
|
|
-
|
|
Async support in C# language brings the new life to the modern application development
to bring forth the same technique of writing your code and bring asynchrony easily.
The main focus of async ctp is to ornament the language in such a way so that the
developer could seamlessly crea......
|
|
-
|
|
If you are working with Windows Phone 7, the first thing that you should have noticed
is the very own Application bar. Application Bar is present in most of the applications
that you use in your Windows Phone 7. This is basically a standard Toolbar with
a menu associated with it which......
|
|