Interview

C# List and Uses

List<T> class  represents the list of objects which can be accessed by index. It comes under the  System.Collection.Generic  namespace.   List class can be used to create a collection of different types like integers, strings etc. List<T>…

What is C# Delegate

A function can have one or more parameters of different data types,  but what if you want to pass a function itself as a parameter?  How does C# handle the callback functions or event handler?  The answer is - delegate. A delegate is like a …

Load More
That is All