What are generics, Delegates and Generic delegates ( C# interview questions)?

In case you are new to generics please see this youtube video to understand the same.

 

Generics – General type of programming. In generic style of programming we won’t specify the type at the time of creation rather when we use it we specify the type. Example look at the following code
Public class Swapper
{
            Public class Swap<T>(T x,T y)
            {
                        T temp;
                        temp=x;
                        x=y;
                       y=temp;
            }
}  

At the time of creation we didn’t specified the type rather at the time of usage we will specify the type.
Swapper s=new Swapper();
s.Swap<int>(5,6);
s.Swap<float>(5.5,6.6);

Delegates Pointer to the function. Normally we can create variable of type int,float,string..etc. Those variables we can pass as a parameter to other functions but what when we want to declare a variable which will act as a pointer to the function so that we can pass one function as argument to another function. It is possible with the help of delegate. With Delegates we will create a variable which can point to a particular function.
Example
public delegate void MyDelegate(int x,int y);
.
.
.
public void MyFunction(int xx,int yy)
{
              …
}
.
.
.
MyDelegate m=new MyDelegate(MyFunction);
m.invoke(5,6)

Generic Delegate – Yes, we can create delegate which will be generic in nature. Example
public delegate void MyDelegate<T>(T x,T y);
 .
 .
 .
 public void MyFunction(int xx,int yy)
 {
             …
 }
 .
 .
 .
MyDelegate<int> m=new MyDelegate<int>(MyFunction);
m.invoke(5,6)

Please do visit questpond.com for more such c# and .NET interview question videos.

About C#.NET, ASP.NET MVC Core, Angular, Azure, (MSBI)Business Intelligence, Data Science - Python Interview Questions

This blog is for developers who want to crack .NET and C# interviews. It has all tips and tricks needed to crack .NET interviews , C# interview , SQL Server interview , Java interview , WCF Interview , Silverlight interview , WPF interview , LINQ interview , Entity framework Interview. Do not forget to watch our Learn step by step video series. ASP.NET MVC Interview Questions and Answers:- https://youtu.be/pXmMdmJUC0g C# Interview Questions and Answers:- https://youtu.be/BKynEBPqiIM Angular Interview Questions and Answers:- https://youtu.be/-jeoyDJDsSM C# tutorial for beginners(4 hrs.):- https://youtu.be/AxEGRBFwlmI Learn Azure Step by Step:- https://youtu.be/wdUK7bCMXqs Azure AZ-900 fundamentals certification :- https://youtu.be/hC9iGgJorz8 AZ- 204 certification Azure:- https://youtu.be/qI8PRn2C080 Learn Angular tutorial step by step https://tinyurl.com/ycd9j895 Learn MVC 5 step by step in 16 hours:- https://youtu.be/Lp7nSImO5vk Learn Design Pattern Step by Step https://goo.gl/eJdn0m Learn MSBI Step by Step in 32 hours:- https://goo.gl/TTpFZN Learn SQL Server Step by Step http://tinyurl.com/ja4zmwu Python Tutorial for Beginners:- https://youtu.be/KjJ7WzEL-es Learn Data Science in 1 hour :- https://tinyurl.com/y5o7qbau Learn Power BI Step by Step:- https://tinyurl.com/y6thhkxw Learn Tableau step by step :- https://tinyurl.com/kh6ojyo
This entry was posted in Uncategorized and tagged , , , , , . Bookmark the permalink.

Leave a comment