June 2005 - Posts
Intended Readers: persons having basic knowledge of C# Level: Beginners Introduction Anonymous method is a new feature of C# 2.0 which allows us to define the method in line without any signature or name. C# 2.0 is the first Microsoft language which supports
Read More...
Intended Readers: Persons having basic knowledge of programming in C# 1.1 Level: Beginners Introduction Partial types is of the new features introduced in C# 2.0, it simply allows us to span the definition of a type into multiple files. Concept of partial
Read More...
Intended Readers: Persons having knowledge of collections, C++ templates, and basic programming skills in C# Level: Beginners Introduction Iterator is a mechanism which provides the sequential access of each and every item in the collection of objects
Read More...
Intended Readers: Persons having basic knowledge of .NET and distributed applications Level: Beginners and intermediates. Introduction Asynchronous programming means one program doesn’t wait for completion of other method call and continues its execution
Read More...
Intended Readers : Person having intermediate knowledge of .NET Remoting Level : Expert Introduction As I discussed in my previous post that activation of remote objects can be of two types, Server activated and client activated. Last discussion was about
Read More...
Intended Readers : Persons having intermediate knowledge of .NET Remoting Level : Intermediate Introduction .NET remoting allows object creation and method calling outside of application domain, process or computer. When we create a remote object it is
Read More...