Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 779547
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T19:56:36+00:00 2026-05-14T19:56:36+00:00

Since i am new to c#, would like to know about Interfaces and Delegates

  • 0

Since i am new to c#, would like to know about Interfaces and Delegates in c#, the difference between them and scenarios both these to be used. Please don’t provide any links, i would like an explanation in simple words.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T19:56:37+00:00Added an answer on May 14, 2026 at 7:56 pm

    A quote from C# in Nutshell.

    A problem that can be solved with a delegate can also be solved with an
    interface. For instance, the following explains how to solve our filter problem using
    an ITransformer interface:

    public interface ITransformer
    {
       int Transform (int x);
    }
    public class Util
    {
       public static void TransformAll (int[] values, ITransformer t)
       {
          for (int i = 0; i < values.Length; i++)
             values[i] = t.Transform (values[i]);
       }
    }
    
    class Squarer : ITransformer
    {
       public int Transform (int x) { return x * x; }
    }
    
    ...
    static void Main()
    {
       int[] values = { 1, 2, 3 };
       Util.TransformAll (values, new Squarer());
       foreach (int i in values)
          Console.WriteLine (i);
    }
    

    A delegate design may be a better choice than an interface design if one or more of
    these conditions are true:

    • The interface defines only a single
      method.
    • Multicast capability is needed.
    • The subscriber needs to implement the
      interface multiple times.

    In the ITransformer example, we don’t need to multicast. However, the interface
    defines only a single method. Furthermore, our subscriber may need to implement
    ITransformer multiple times, to support different transforms, such as square or cube.
    With interfaces, we’re forced into writing a separate type per transform, since Test
    can implement ITransformer only once. This is quite cumbersome:

    class Squarer : ITransformer
    {
       public int Transform (int x) { return x * x; }
    }
    class Cuber : ITransformer
    {
       public int Transform (int x) {return x * x * x; }
    }
    ...
    static void Main()
    {
       int[] values = { 1, 2, 3 };
       Util.TransformAll (values, new Cuber());
       foreach (int i in values)
       Console.WriteLine (i);
    }
    

    And here is the code with delegate

    public delegate int Transformer (int x);
    class Util
    {
       public static void Transform (int[] values, Transformer t)
       {
          for (int i = 0; i < values.Length; i++)
          values[i] = t (values[i]);
       }
    }
    class Test
    {
       static void Main()
       {
          int[] values = { 1, 2, 3 };
          Util.Transform (values, Square); // Dynamically hook in Square
          foreach (int i in values)
             Console.Write (i + " "); // 1 4 9
       }
       static int Square (int x) { return x * x; }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Since Rails 2.1, if you define a new column in a migration with the
I'm new to this SCM, but since SVN is gaining popularity I was going
I haven't really looked into the new .NET stuff since 2.0, but I'm wondering
Since both a Table Scan and a Clustered Index Scan essentially scan all records
Since debate without meaningful terms is meaningless , I figured I would point at
Since I started studying object-oriented programming, I frequently read articles/blogs saying functions are better,
Since CS3 doesn't have a web service component, as previous versions had, is there
Since Graduating from a very small school in 2006 with a badly shaped &
Since the WMI class Win32_OperatingSystem only includes OSArchitecture in Windows Vista, I quickly wrote
Since the keyboard is the interface we use to the computer, I've always thought

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.