Answered Questions

  • What is a delegate, How many types of delegates are there

    SAIRAM

    • Oct 23rd, 2011

    A delegate is a reference type variable , which holds the reference of a method. This reference can be changed at run time , as desired. Two types of delegates :- 1. single-cast delegate - can call o...

    deepak kumar choudhary

    • Oct 12th, 2011

    A delegate will allow us to specify what the function we'll be calling looks like without having to specify which function to call. The declaration for a delegate looks just like the declaration for a...