Always remain updated about current software development trends

Articles by ABHISHEK SUR

Writing a Reusable WPF User Control with Design Support

This article creates a new Usercontrol in XAML which one could use as reusable chunk of code in their own application.

Writing a Reusable Custom Control in WPF

The article deals with writing a sample Custom Control with Generic Template and all the components that a control must have. It also provides a Sample application to demonstrate these concepts live.

RegisterName for StoryBoards in WPF (NameScopes)

StoryBoards needs active Registered control to animate during runtime. WPF Namescopes allows you to define each containers its child elements and also maintaines each of them for a particular Namescope. In this article I demonstrated how you could use it for...

Application Bar for your Windows Phone 7

Application bar is the standard toolbar available for every application. In this post I have covered how you can use Application Bar in Windows Phone 7 Application.

Async support for Silverlight and WP7

Async CTP is out now. And the new release has support for both Silverlight and Windows Phone 7. In this post, I am going to cover some of the important things that you need to consider while you want to deal with asynchrony using Async CTP.

Internals to C# iterators

In this post I am going to demonstrate the basic feature behind the C# iterators and also introduce you the secret behind the yield keyword of C#.

Internals of Exception Handling

Exception handling is one of the most important part of a program. .NET introduces Structured Exception Handling which deals with many problems we faced with Win32 style of handling exception. In this post I have covered some of the bases of exception handling...

Get Reflected use TypeDescriptor

Reflection is one of the major concept to get data from a Type during runtime. TypeDescriptor provides much more simplier api to get information from a type. This post demonstrates how easy is to evaluate a type during runtime

Reflection - Slow or Fast? Demonstration with Solutions

Reflection is always been a slow sided thing for any application. In this post, I put practical approach to make Reflection based call bit faster for your client applications.

Rate your calls: Type Constraint Or Type Evaluation

Generic Type Constraint vs Type Evaluation in terms of IL