How do you declare delegates and are delegates and events
one and the same and explain how do you declare delegates
and invoke them ?



How do you declare delegates and are delegates and events one and the same and explain how do you d..

Answer / g.yasmin banu

A delegate in C# is similar to a function pointer in C or
C++. Using a delegate allows the programmer to encapsulate
a reference to a method inside a delegate object. The
delegate object can then be passed to code which can call
the referenced method, without having to know at compile
time which method will be invoked. Unlike function pointers
in C or C++, delegates are object-oriented, type-safe, and
secure.

A delegate declaration defines a type that encapsulates a
method with a particular set of arguments and return type.
For static methods, a delegate object encapsulates the
method to be called. For instance methods, a delegate
object encapsulates both an instance and a method on the
instance. If you have a delegate object and an appropriate
set of arguments, you can invoke the delegate with the
arguments.

An interesting and useful property of a delegate is that it
does not know or care about the class of the object that it
references. Any object will do; all that matters is that
the method's argument types and return type match the
delegate's. This makes delegates perfectly suited
for "anonymous" invocation.

Note Delegates run under the caller's security
permissions, not the declarer's permissions.
This tutorial includes two examples:

Example 1 shows how to declare, instantiate, and call a
delegate.
Example 2 shows how to combine two delegates.
In addition, it discusses the following topics:

Delegates and Events
Delegates vs. Interfaces

The following example illustrates declaring, instantiating,
and using a delegate. The BookDB class encapsulates a
bookstore database that maintains a database of books. It
exposes a method ProcessPaperbackBooks, which finds all
paperback books in the database and calls a delegate for
each one. The delegate type used is called
ProcessBookDelegate. The Test class uses this class to
print out the titles and average price of the paperback
books.

The use of delegates promotes good separation of
functionality between the bookstore database and the client
code. The client code has no knowledge of how the books are
stored or how the bookstore code finds paperback books. The
bookstore code has no knowledge of what processing is done
on the paperback books after it finds them.



// bookstore.cs
using System;

// A set of classes for handling a bookstore:
namespace Bookstore
{
using System.Collections;

// Describes a book in the book list:
public struct Book
{
public string Title; // Title of the book.
public string Author; // Author of the book.
public decimal Price; // Price of the book.
public bool Paperback; // Is it paperback?

public Book(string title, string author, decimal
price, bool paperBack)
{
Title = title;
Author = author;
Price = price;
Paperback = paperBack;
}
}

// Declare a delegate type for processing a book:
public delegate void ProcessBookDelegate(Book book);

// Maintains a book database.
public class BookDB
{
// List of all books in the database:
ArrayList list = new ArrayList();

// Add a book to the database:
public void AddBook(string title, string author,
decimal price, bool paperBack)
{
list.Add(new Book(title, author, price,
paperBack));
}

// Call a passed-in delegate on each paperback book
to process it:
public void ProcessPaperbackBooks(ProcessBookDelegate
processBook)
{
foreach (Book b in list)
{
if (b.Paperback)
// Calling the delegate:
processBook(b);
}
}
}
}

// Using the Bookstore classes:
namespace BookTestClient
{
using Bookstore;

// Class to total and average prices of books:
class PriceTotaller
{
int countBooks = 0;
decimal priceBooks = 0.0m;

internal void AddBookToTotal(Book book)
{
countBooks += 1;
priceBooks += book.Price;
}

internal decimal AveragePrice()
{
return priceBooks / countBooks;
}
}

// Class to test the book database:
class Test
{
// Print the title of the book.
static void PrintTitle(Book b)
{
Console.WriteLine(" {0}", b.Title);
}

// Execution starts here.
static void Main()
{
BookDB bookDB = new BookDB();

// Initialize the database with some books:
AddBooks(bookDB);

// Print all the titles of paperbacks:
Console.WriteLine("Paperback Book Titles:");
// Create a new delegate object associated with
the static
// method Test.PrintTitle:
bookDB.ProcessPaperbackBooks(new
ProcessBookDelegate(PrintTitle));

// Get the average price of a paperback by using
// a PriceTotaller object:
PriceTotaller totaller = new PriceTotaller();
// Create a new delegate object associated with
the nonstatic
// method AddBookToTotal on the object totaller:
bookDB.ProcessPaperbackBooks(new
ProcessBookDelegate(totaller.AddBookToTotal));
Console.WriteLine("Average Paperback Book Price:
${0:#.##}",
totaller.AveragePrice());
}

// Initialize the book database with some test books:
static void AddBooks(BookDB bookDB)
{
bookDB.AddBook("The C Programming Language",
"Brian W. Kernighan and Dennis M. Ritchie",
19.95m, true);
bookDB.AddBook("The Unicode Standard 2.0",
"The Unicode Consortium", 39.95m, true);
bookDB.AddBook("The MS-DOS Encyclopedia",
"Ray Duncan", 129.95m, false);
bookDB.AddBook("Dogbert's Clues for the Clueless",
"Scott Adams", 12.00m, true);
}
}
}



Code Discussion
Declaring a delegate The following statement:
Copypublic delegate void ProcessBookDelegate(Book book);
declares a new delegate type. Each delegate type describes
the number and types of the arguments, and the type of the
return value of methods that it can encapsulate. Whenever a
new set of argument types or return value type is needed, a
new delegate type must be declared.

Instantiating a delegate Once a delegate type has been
declared, a delegate object must be created and associated
with a particular method. Like all other objects, a new
delegate object is created with a new expression. When
creating a delegate, however, the argument passed to the
new expression is special — it is written like a method
call, but without the arguments to the method.
The following statement:

CopybookDB.ProcessPaperbackBooks(new ProcessBookDelegate
(PrintTitle));
creates a new delegate object associated with the static
method Test.PrintTitle. The following statement:

CopybookDB.ProcessPaperbackBooks(new
ProcessBookDelegate(totaller.AddBookToTotal));
creates a new delegate object associated with the nonstatic
method AddBookToTotal on the object totaller. In both
cases, this new delegate object is immediately passed to
the ProcessPaperbackBooks method.

Note that once a delegate is created, the method it is
associated with never changes — delegate objects are
immutable.

Calling a delegate Once a delegate object is created, the
delegate object is typically passed to other code that will
call the delegate. A delegate object is called by using the
name of the delegate object, followed by the parenthesized
arguments to be passed to the delegate. An example of a
delegate call is:
CopyprocessBook(b);
A delegate can either be called synchronously, as in this
example, or asynchronously by using BeginInvoke and
EndInvoke methods.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More ASP.NET Interview Questions

What is difference between session and cookies?

0 Answers  


How to rename a table using sql queries?

0 Answers  


What is redirecting behavior?

0 Answers  


Define web services in asp.net.

0 Answers  


What is the difference between globalization and localization?

0 Answers  






Describe briefly what is the role of IIS on an ASP.NET application? What does it for the same application?

0 Answers   InfoAxon Technologies,


How to add DateTime Control in normal DataGrid Server Control?

0 Answers  


what is shared assembly asp net

1 Answers   Fidelity,


How should I destroy my objects in asp.net?

0 Answers  


What are the various types of authentication?

1 Answers  


How do you implement Paging in .Net ?

1 Answers  


About CLS and CTS?

8 Answers   Microsoft, Syncfusion,


Categories