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 3214056
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T15:00:57+00:00 2026-05-17T15:00:57+00:00

I am looking for a really simple explanation of interfaces in C#. I have

  • 0

I am looking for a really simple explanation of interfaces in C#. I have been asking google but the answers I get are very technical and worded in a way a programmer might understand. It almost sounds like a method that can be called in order to perform a function, It allows the programmer to use less key strokes.

From what I am reading below interfaces are a way to create a container of method that do the same thing but with different technologies.

I would like to know what they are? What they do? What I might use them for?

  • 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-17T15:00:57+00:00Added an answer on May 17, 2026 at 3:00 pm

    Imagine that you have a pizza store (I’m stealing this example from a famous Design Patterns book). You know that all pizzas need to be ordered, prepared, baked and boxed. Well, you can define this common behavior into an interface:

    public interface IPizza
    {
       void Order();
       void Prepare();
       void Bake();
       void Box();
    }
    

    And have your different kinds of pizzas implement that interface. When you implement an interface, you’re forcing that class to have the same methods and parameters as the interface, for example:

    public class PepperoniPizza : IPizza
    {
       public void Order()
       {
           //Order Pepperoni pizza
       }
    
       public void Prepare()
       {
           //Prepare Pepperoni pizza
       }
    
       public void Bake()
       {
           //Bake Pepperoni pizza
       }
    
       public void Box()
       {
           //Box Pepperoni pizza
       }
    }
    

    You would pretty much have the same with Hawaiian, Cheese or any other Pizza.

    In real life there are several uses for Interfaces. You can create contracts to extend an application, or ensure that it works on different situations.

    Hope this helps

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This seems like a really simple question but somehow my Google-Fu failed me. What's
I'm looking for good tutorial or really simple code to integrate mongokit and django
I'm really looking for something very similar to the way SO is setup where
I've been looking at the new features in C++11 and it really looks like
I have a really frustrating error that I've spent hours looking at and cannot
I'm looking for a scoring algorithm but I really don't find what I'm looking
I am just looking for a bit of instruction really. I am very new
I am looking for a really simple and lightweight IoC Container whose C# source
I am looking for a really simple database implementation; basically one with no complex
I am looking to do something really simple. Merely convert a string, such as

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.