Users Online

· Guests Online: 97

· Members Online: 0

· Total Members: 188
· Newest Member: meenachowdary055

Forum Threads

Newest Threads
No Threads created
Hottest Threads
No Threads created

Latest Articles

C# Program to Implement Principles of Delegates

C# Program to Implement Principles of Delegates

 

This is a C# Program to implement principles of delegates.

Problem Description

This C# Program Implements Principles of Delegates.

Problem Solution

Here delegate is a type that represents references to methods with a particular parameter list and return type. When you instantiate a delegate, you can associate its instance with any method with a compatible signature and return type. You can invoke (or call) the method through the delegate instance.

Program/Source Code

Here is source code of the C# Program to Implement Principles of Delegates. The C# program is successfully compiled and executed with Microsoft Visual Studio. The program output is also shown below.

/*
 *  C# Program to Implement Principles of Delegates
 */
 
using System;
class Program
{
      delegate string UppercaseDelegate(string input);
      static string UppercaseFirst(string input)
      {
        char[] buffer = input.ToCharArray();
        buffer[0] = char.ToUpper(buffer[0]);
        return new string(buffer);
      }
      static string UppercaseLast(string input)
      {
        char[] buffer = input.ToCharArray();
        buffer[buffer.Length - 1] = char.ToUpper(buffer[buffer.Length - 1]);
        return new string(buffer);
      }
      static string UppercaseAll(string input)
      {
        return input.ToUpper();
      }
      static void WriteOutput(string input, UppercaseDelegate del)
      {
        Console.WriteLine("Input String: {0}", input);
        Console.WriteLine("Output String: {0}", del(input));
      }
      static void Main()
      {
        WriteOutput("tom ", new UppercaseDelegate(UppercaseFirst));
        WriteOutput("tom", new UppercaseDelegate(UppercaseLast));
        WriteOutput("tom", new UppercaseDelegate(UppercaseAll));
        Console.ReadLine();
      }   
}
Program Explanation

This C# Program is used to Implement Principles of Delegates. Here delegate is a type that represents references to methods with a particular parameter list and return type. When you instantiate a delegate, associate its instance with any method with a compatible signature and return type. Invoke the method through the delegate instance.

 
Runtime Test Cases
 
Input String: tom
Output String: Tom
Input String: tom
Output String: toM
Input String: tom
Output String: TOM

 

Comments

No Comments have been Posted.

Post Comment

Please Login to Post a Comment.

Ratings

Rating is available to Members only.

Please login or register to vote.

No Ratings have been Posted.
Render time: 3.16 seconds
10,866,009 unique visits