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

  • SEARCH
  • Home
  • 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 4623304
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T02:58:04+00:00 2026-05-22T02:58:04+00:00

I read that you can use interfaces and delegates for the same purpose. Like,

  • 0

I read that you can use interfaces and delegates for the same purpose. Like, you can use delegates instead of interfaces.

Can someone provide an example? I’ve seen an example in the nutshell book but I fail to remember and wanted to ask away.

Is it possible to provide some sample code? Use case?

Thanks.

  • 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-22T02:58:04+00:00Added an answer on May 22, 2026 at 2:58 am

    If your interface has a single method, then it is more convenient to use a delegate.

    Compare the following examples:

    Using an interface

    public interface IOperation
    {
        int GetResult(int a, int b);
    }
    
    public class Addition : IOperation
    {
        public int GetResult(int a, int b)
        {
             return a + b;
        }
    }
    
    public static void Main()
    {
        IOperation op = new Addition();
        Console.WriteLine(op.GetResult(1, 2));
    }
    

    Using a delegate

    // delegate signature.
    // it's a bit simpler than the interface
    // definition.
    public delegate int Operation(int a, int b);
    
    // note that this is only a method.
    // it doesn't have to be static, btw.
    public static int Addition(int a, int b)
    {
        return a + b;
    }
    
    public static void Main()
    {
        Operation op = Addition;
        Console.WriteLine(op(1, 2));
    }
    

    You can see that the delegate version is slightly smaller.

    Using anonymous methods and `Func` delegates

    If you combine this with built-in .NET generic delegates (Func<T>, Action<T> and similar), and anonymous methods, you can replace this entire code with:

    public static void Main()
    {
        // Func<int,int,int> is a delegate which accepts two
        // int parameters and returns int as a result
        Func<int, int, int> op = (a, b) => a + b;
    
        Console.WriteLine(op(1, 2));
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I read at many places that singletons can use interfaces. Some how I am
Can anyone recommend a simple API that will allow me to use read a
I read somewhere that interfaces can have member variables. Static final constants only, can
Is this warning anything to worry about? I've read that it can cause erratic
Is there any class in the .NET framework that can read/write standard .ini files:
Is there a stand-alone GUI designer that can read and write the .form files
Anybody in the know of a viewer (or Notepad++ plugin) that can read txt
I have read a lot that LISP can redefine syntax on the fly, presumably
From time to time I read that Fortran is or can be faster then
Apparently I can't move files on different volumes using Directory.Move. I have read that

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.