TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About Interface in C#
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Munib Butt (2)
Prakash Tripathi (1)
Pankaj Patel (1)
Mahesh Alle (1)
Ganesan C (1)
Farhan Ahmed (1)
Vikram Chaudhary (1)
Abhishek Yadav (1)
Related resources for Interface in C#
No resource found
Implicit And Explicit Interface Implementation In C#
9/18/2023 12:08:23 PM.
This article explains how to use implicit and explicit interface implementation in C# programming.In C#, interface implementation is a mechanism that allows a class to provide specific implementations
Abstract Class Vs Interface in C#
9/6/2023 11:14:03 AM.
n C#, both abstract classes and interfaces are used to define contracts for classes, ensuring that they adhere to a certain structure or behavior. However, they serve different purposes and have disti
Use Of Interface With Real Time Examples, Interview Questions And Answers About Interface In C#
9/1/2023 5:51:48 AM.
In this article, you will learn how to use of interface with real time examples, interview questions and answers about interface in C#.
Method Implementation, Private, Static Members In C# Interfaces⚡ - New Feature In C# Interfaces
9/21/2021 5:44:03 AM.
In this article, we are going to see about “Default implementations in interfaces” feature in C#.
Using The IEquatable Interface In C#
5/19/2020 9:03:17 PM.
One of the most-used functionalities in C# classes is the ability to compare two instances of a class. This is done using the Equals keyword. This will compare to see if the reference to both the clas
Using The IComparable And IComparer Interface In C#
5/18/2020 9:29:05 AM.
One of the most used functionalities in our C# classes is the ability to sort the different instances of a class. This is mostly done when we create a generic List of our class type and next, we want
Overview Of Abstract Class And Interface
11/22/2018 4:02:28 AM.
In this article, I will explain you abstract class and interface. Which is the most important topic to cover? Most of the interviewer ask about abstract class and interface. I will cover all possible
Why We Use Interfaces in C#
8/23/2015 11:51:50 PM.
In this article you will learn about interfaces in C#.
IComparable Interface and Its Use in Sorting Types
5/11/2015 12:37:01 AM.
This article explains what the IComparable interface is, how to do sorting on simple types (such as int, string, float, and so on) and how to sort Complex Types using the IComparable interface.