×

C# Tutorial

Basics of .Net

C# Basics

C# Fundamentals

C# Operators

C# Loops

C# Type Conversions

C# Exception Handling

C# String Class

C# Arrays

C# List

C# Stack

C# Queue

C# Collections

C# Character Class

C# Class and Object

C# Namespaces

C# Delegates

C# Constructors

C# Inheritance

C# Operator Overloading

C# Structures

C# File Handling

C# Convert.ToInt32()

C# Int32 (int) Struct

C# DateTime Class

C# Uri Class

C# Database Connectivity

C# Windows

C# Other Topics

C# Q & A

C# Programs

C# Find O/P

C# program to declare and instantiate delegate

Here, we are going to learn how to declare and instantiate delegate in C#? Submitted by Nidhi Last updated : April 03, 2023

Declare and Instantiate Delegate in C#

Here, we will create a method and create the delegate to point the method, delegates are just like a function pointer in C. we can invoke method using delegates.

C# code to declare and instantiate delegate

The source code to declare and instantiate delegate is given below. The given program is compiled and executed successfully on Microsoft Visual Studio.

//C# program to declare and instantiate delegate.

using System;

delegate void MyDel();
class Sample
{ 
    void Method1()
    {
        Console.WriteLine("Method1() called");
    }

    static void Main()
    {
        Sample S = new Sample();
        MyDel del = new MyDel(S.Method1);

        del();
    }
}

Output

Method1() called
Press any key to continue . . .

Explanation

In the above program, we created a Sample class that contains a method instance Method1() and static method Main().

Method1() is used to print a message on the console screen.

delegate void MyDel();

Here we created a delegate according to the method declaration.

MyDel del = new MyDel(S.Method1);
del();

In the above code we bind the Method1() to the delegate del and called the method Method1() using delegate del that will print "Method1() called" on the console screen.

C# Delegate Programs »



Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

Copyright © 2025 www.includehelp.com. All rights reserved.