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 3AW
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.

Creation of an instance in Question 2:

In the above given case, the delegate type is declared, now an actual delegate has to be created.

The statement to create an instance of the delegate type is as follows:

DisplayInteger ShowIntValue = ShowValue;

The above given statement creates a delegate named ShowIntValue, and the ShowValue method is assigned to the delegate. A delegate can reference any method as long as it has a return type and parameter list matching that of the delegate type.

Blurred answer
Knowledge Booster
Background pattern image
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