Delegates in C Sharp
A Delegate is a type variable that holds the reference to a method. Delegates are similar to Pointer to functions in C and C++
When we create a d…Read More
Singly Linked List in C#
Node class is a generic class that will help to initialize each node of linked list.
public class Node
{
public Node(T value)
{
…Read More
Interfaces in C#
Hello Everyone, In this article we will try to understand about interfaces and its use in C#
Interfaces in C# are the empty vocabularies.
…Read More
Multicast Delegate in C#
Hello Everyone, I talked about delegate in my last article. In this article we will talk about multicast delegate.
A Delegate is a type variable th…Read More
This is my personal blog and i write articles on .Net, WPF, C#, OOPS, Threading and other .Net technologies. This is not related to any of my employer and organizations. This is the result of my personal interest.
0 comments:
Post a Comment