Quantcast
Channel: Dotnetfreaks' Blog - vs
Browsing latest articles
Browse All 5 View Live

When to Use Delegates Instead of Interfaces

Both delegates and interfaces allow a class designer to separate type declarations and implementation. A given interface can be inherited and implemented by any class or struct; a delegate can created...

View Article



Interfaces in C#

An interface contains only the signatures of methods,  events, indexers or properties. When a class or struct implements the interface then that class/struct must implement the members of the interface...

View Article

Explicit Interface Implementation in C#

C# doesn't support multiple inheritances but it is been achieved using interfaces. A class in C# has the option to implement one or more interface(S). There is only one challenge when class implements...

View Article

WCF...Why Windows Communication Foundation?

WCF (Basics..for building effective Services)WCF:  Windows Communication FoundationIt includes a collection of .NET distributed technologies that have existed for long , but never got grouped under one...

View Article

C# Partial Classes and Methods

 One of the unique features of C# is the concept of Partial, extendable to definition of a Class or a Struct, an Interface or a method. Using this, the definition of any class, struct, interface of...

View Article

Browsing latest articles
Browse All 5 View Live




Latest Images