Starting Out With Visual C# (5th Edition)
Starting Out With Visual C# (5th Edition)
5th Edition
ISBN: 9780135183519
Author: Tony Gaddis
Publisher: PEARSON
Question
Book Icon
Chapter 13, Problem 2AW
Program Plan Intro

Declaration of delegate type in Question 1:

Suppose a class consists of the following method:

private void ShowValue(int i)

{

    MessageBox.Show(i.ToString());

}

Explanation:

In the above given statement,

  • The return type is void.
  • The method consists of one parameter, an integer.

If this method has to be assigned to a delegate, then a delegate must be used to call the method. Initially, a delegate type must be declared as follows:

//Declare delegate type

delegate void DisplayInteger(int i);

  • The above statement declares a delegate type named DisplayInteger, that can reference any void method, which has one parameter, an integer.
  • This declaration starts with the delegate keyword, followed by code, which is same as that of a method header, terminated with a semicolon.

Blurred answer
Students have asked these similar questions
What is Windows Server and what is the Differences between Windows Server 2019 and the Windows Operating System that people have installed on their personal computer.
solve and show the tree on paper
I need help to resolve the following activity
Knowledge Booster
Background pattern image
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education