TECHNOLOGIES
ANSWERS
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 Interfaces
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Matthew Cochran (6)
Mahesh Chand (4)
Harpreet Singh (3)
Daniel Stefanescu (3)
Shivprasad (3)
Puran Mehra (3)
Rahul Sahay (2)
Doug Doedens (2)
Parveen Malik (2)
Dipen Lama (2)
David Talbot (2)
Prasad H (2)
Ahmad Mozaffar (1)
Gaurav Gahlot (1)
Sundus Naveed (1)
Amit Choudhary (1)
Shakti Saxena (1)
Vikram Chaudhary (1)
Nitin (1)
Jasminder Singh (1)
Tom Mohan (1)
Francis (1)
Vithal Wadje (1)
Satendra Singh Bhati (1)
Rohatash Kumar (1)
Sandeep Sharma (1)
Mahesh Alle (1)
Bechir Bejaoui (1)
Rajesh VS (1)
Avinash Gujjar (1)
Ibrahim Ersoy (1)
Zhou Wu (1)
Tony Tromp (1)
Niranjan Kumar Kandaswamy (1)
Mohan Rathour (1)
Mayur Gujrathi (1)
Sivaraman Dhamodaran (1)
Kirtan Patel (1)
Ashish Jaiman (1)
Ganesh Nataraj (1)
John Schofield (1)
Rajadurai P (1)
chandrakant upadhyay (1)
mercy_gp (1)
Related resources for Interfaces
No resource found
Three Popular C# Interfaces
1/10/2018 11:01:45 AM.
In this article, you will learn about the most common interfaces in the C# Libraries that you can use to create robust classes and objects.
Dependency Injection - Part Six - Autofac's "AsImplementedInterfaces"
9/11/2017 3:30:00 PM.
While I was exploring Autofac, I found AsImplementedInterfaces quite interesting. Not only because it is useful, but also because if we are not careful with its use, we may end up with unexpected appl
Getting Started With Interfaces In .NET
2/16/2016 4:22:42 AM.
In this article you will learn how to get started with interfaces in .NET.
Class Vs Abstract Class Vs Interfaces
12/16/2015 8:49:21 AM.
In this article you will learn about the differences between Class, Abstract Class and Interfaces in C# language.
Overview Of Interfaces
12/13/2015 11:24:22 AM.
In this article you will learn about overview of Interfaces in C# with example.
Abstract Class vs Interfaces In Object Oriented EcoSystem
12/3/2015 12:05:41 AM.
In this blog you will learn about the difference between Abstract class and Interface.
IComparable, IComparer And IEquatable Interfaces In C#
10/27/2015 1:48:43 AM.
In this article you will learn about IComparable, IComparer And IEquatable Interfaces In C#.
Why We Use Interfaces in C#
8/23/2015 11:51:50 PM.
In this article you will learn about interfaces in C#.
Interfaces in C#
4/13/2015 10:10:27 PM.
This article explains interface in C#.
OWIN and Katana Interfaces of ASP.Net
3/29/2015 3:11:33 PM.
In this article, I will share what I have my learned about what O.W.I.N. and Katana are and will try to get into some basic details that are some important concept to be learned.
.NET 4.5 Read-Only Interfaces
3/27/2015 1:01:28 PM.
This article introduces the brand new .NET 4.5 read-only interfaces that is similar to core generic interfaces. Hierarchy of core generic interface with read only interface.
C#: Implicit and Explicit Implementation of Interfaces
2/21/2015 2:06:44 PM.
This article explains the implicit and explicit implementation of interfaces and its purposes.
Difference Between Abstract Classes and Interfaces
1/29/2015 12:59:22 AM.
In this article we will learn about the differences between abstract classes and interfaces.
Explicit Interfaces in C#
1/8/2015 10:56:54 PM.
In this article we will learn about explicit interface implementation.
What Interfaces in C# Are
1/5/2015 1:29:56 PM.
This article explains what interfaces in C# are.
C# Defensive Event Publishing Using Interfaces
10/23/2014 5:59:17 AM.
This article explains how to use interfaces for C# Defensive Event Publishing.
Coding Better: Programming From the Outside In for Fluent Interfaces. Part II
9/15/2014 7:21:09 AM.
In this article we’ll cover building a Fluent Interface in order to write readable code that closely models spoken/written language. In a previous article I discussed how we can be more efficient and write better code by developing from the outside-in. Now we’ll look at a new trick to make this approach even more effective, the Fluent Interface and Method Chaining.
Coding Better: Programming From the Outside In for Fluent Interfaces. Part IV - A Real World Application
9/15/2014 5:04:55 AM.
In this article we'll look at building a fluent interface to abstract parameter assertions which gives us readable code that closely models spoken/written language. This will make code consuming our API contain less code debt and reduce the total cost of maintenance.
Coding Better: Programming From the Outside In for Fluent Interfaces. Part III
9/15/2014 5:02:28 AM.
In a previous article I demonstrated a coding approach that allows us to easily build a Fluent Interface. In this article we'll pick up where I left off and develop a more sophisticated/complex structure.
Customize User Interfaces and Pass User Input to Installer Classes
6/5/2014 8:16:07 AM.
In this article I am going to demonstrate how to customize your MSI install to prompt the user for some information and then pass this information to an installer class. This can be useful when needing to do something during an install based on the user input.
Interfaces in C#
5/31/2014 3:53:30 PM.
In this article we will learn about interfaces in C#.
C# Interface Based Development
12/10/2013 3:06:15 AM.
When trying to build maintainable, reusable, and flexible C# code, the object oriented nature of C# only gets us 50% of the way there. Programming to interfaces can provide us with the last 50%. Interfaced-based design provides loose coupling, true component-based programming, easier maintainability and it makes code reuse much more accessible because implementation is separated from the interface.
Comparable and Comparator Interfaces in Java
11/19/2013 8:28:39 PM.
This article explains the Comparable and Comparator interfaces in Java and the differences between them.
Inherit Multiple Interfaces With the Same Method Name in C#
8/23/2013 6:27:31 PM.
In this article we will see a situation that occurs when two interfaces have methods with the same name and the same parameter(s) and one base class implements these interfaces.
Introduction to Interface In JAVA
4/11/2013 1:57:00 AM.
In this article we will discuss about interface in JAVA. As multiple inheritance in JAVA only achieve through Inerface. So we discuss about Interface in JAVA.
Implicit and Explicit Interface Examples
3/18/2013 1:04:41 PM.
In this article you will learn about Implicit and Explicit Interfaces in detail with examples.
Testing UI with Tests in Visual Studio 2012
2/14/2013 7:41:46 PM.
Easily testing user interfaces with Coded UI tests
Using IComparable and IComparer to compare objects in VB.NET
12/1/2012 2:39:59 AM.
The .Net framework and especially the System.Collection namespace provides us two built in interfaces witch are IComparable and IComparer interfaces in order to compare two objects.
Customize User Interfaces and Pass User Input to Installer Classes
11/10/2012 9:59:14 AM.
In this article I am going to demonstrate how to customize your MSI install to prompt the user for some information and then pass this information to an installer class. This can be useful when needing to do something during an install based on the user input.
Understanding Structures in VB.NET
11/10/2012 3:43:21 AM.
A structure in VB.NET is simply a composite data type consisting of a number elements of other types.
Querying COM+ using Web Services in VB.NET
11/10/2012 2:07:39 AM.
The most COM+ common administrative tasks (creating a COM+ application, installing/deleting a component, setting a component attribute) can be accomplished manually with the Component Services administrative tool from Management Console. But there a few cases (installing the components or changing a component’s value on a regular basis) when it is necessary to have programmatic access to the COM+ applications, components and interfaces.
M.S. Visio Automation
10/4/2012 9:23:38 AM.
This article demonstrates the flexibility of Visio products as a development platform by describing the customized business solutions.
Building User Interfaces for Windows Phone 7
5/20/2012 7:15:33 AM.
This article will cover some aspects that can help you style your UI controls in a Silverlight Windows Phone 7 Application
Microsoft .NET and XML
5/20/2012 6:32:07 AM.
In this article I will explain you about Microsoft .NET and XML.
Integrate Through Web Interfaces with C#
5/20/2012 3:17:47 AM.
This article proposes a way for integrating the enterprise applications through web interfaces. Since the web interfaces are widely available for many existing applications, the method may well reduce the cost of building an integration system with less time and get ride of the dependency on other resources.
Nemesis-7rc1 (Codename Deviate)
5/19/2012 12:40:30 AM.
Nemesis-7 is a full-screen 2D shoot’em up that makes use of the DirectInput, DirectSound and DirectDraw interfaces from DirectX. The player controls a spaceship which he uses to duel the computer opponent. I implemented some artificial intelligence to make the CPU play more human.
Coding Better: Using Classes vs. Interfaces
5/15/2012 3:06:00 PM.
Using the .NET framework we basically have two ways to provide abstraction for our code: Classes and Interfaces. This article will look at the use of each and cover some things to consider when choosing between them in different situations.
Creating Extensible and Abstract Layer
5/13/2012 5:56:45 AM.
This article explains you about the abstraction and extensibility which is an important factor in modern day frameworks.
Visual studio and .NET tips and tricks 14:- Implement interfaces with just a right click
1/23/2012 2:26:28 AM.
Visual studio and c#/ .NET tips and tricks 14:- Implement interfaces with just a right click.In this video we will see how to implement interfaces with right clicks rather than typing them manually.
Interfaces of collection in JAVA
10/24/2011 11:27:08 PM.
Here you will learn about the collection interfaces in JAVA.
Interfaces in .NET
4/24/2011 10:05:40 AM.
In the article before this I explained Abstract Classes.
Interfaces in C#
10/27/2010 11:31:35 AM.
In this article you will know about Interfaces in C#.
How and when to Use Interfaces like IComparable
9/15/2010 11:17:34 PM.
This article is targeted for the people who don't know how to use Interfaces .
Common Interfaces using C#
4/7/2010 11:48:08 PM.
In this article I will explain you about Common Interfaces using C#.
GDI+ Namespaces and Classes in .NET
10/29/2009 6:24:47 AM.
In this article I will explain about GDI+ Namespaces and Classes in .NET
ADO .NET Disconnected Classes
10/28/2009 1:24:04 AM.
In this article I will explain about the ADO.NET Disconnected Classes.
Interfaces + Factory pattern = Decoupled architecture
6/30/2009 11:27:56 PM.
In this tutorial we will try to understand how we can use interfaces and factory pattern to create a truly decoupled architecture framework. In this sample we will take up a simple three tier architecture and apply interfaces and factory pattern to see how we can transform the three tier in to a truly decoupled architecture.
Interfaces + Factory pattern = Decoupled architecture
6/30/2009 11:27:56 PM.
In this tutorial we will try to understand how we can use interfaces and factory pattern to create a truly decoupled architecture framework. In this sample we will take up a simple three tier architecture and apply interfaces and factory pattern to see how we can transform the three tier in to a truly decoupled architecture.
What are interfaces
6/1/2009 1:08:55 AM.
In this article I will be explaining you about interface, there types and implementation.
What are interfaces
6/1/2009 1:08:55 AM.
In this article I will be explaining you about interface, there types and implementation.
Sorting Object Using IComparer and IComparable Interfaces
5/30/2009 1:22:16 AM.
The System.Collections namespace contains interfaces and classes that define various...
How we configure interfaces of PIX or ASA
1/12/2009 5:17:00 AM.
A pix or firewall can have up to the 10 interfaces based upon PIX or ASA version and Interface module install on it.
How we configure interfaces of PIX or ASA
1/12/2009 5:17:00 AM.
A pix or firewall can have up to the 10 interfaces based upon PIX or ASA version and Interface module install on it.
Delegates and Events in C#
6/6/2007 4:45:55 AM.
A delegate in C# is similar to a function pointer in C or C++. Using a delegate allows the programmer to encapsulate a reference to a method inside a delegate object.
Inheritance Versus Interfaces
7/18/2006 1:45:06 AM.
This article describes the advantages of using interfaces over inheritance and how to create a plug and play component in .NET using an interface.
Inheritance Versus Interfaces
7/18/2006 1:45:06 AM.
This article describes the advantages of using interfaces over inheritance and how to create a plug and play component in .NET using an interface.
Messaging between Threads using Message Loop
1/30/2006 11:48:06 PM.
MessageLoopLib is a stripped down version of a complete, threading communication subsystem Ive written. This implementation is a single thread created in the GUI constructor. Ive dropped all thread management and have had to change some of the message code to accommodate this.
Simple Windows Forms Events and Interfaces
1/18/2006 5:53:25 AM.
This article contains a c# code which makes use of the concepts of Events and Interfaces together.
Querying COM+ through Web Services
1/9/2006 1:42:06 AM.
The most COM+ common administrative tasks (creating a COM+ application, installing/deleting a component, setting a component attribute) can be accomplished manually with the Component Services administrative tool from Management Console.
Querying COM+ through Web Services
1/9/2006 1:42:06 AM.
The most COM+ common administrative tasks (creating a COM+ application, installing/deleting a component, setting a component attribute) can be accomplished manually with the Component Services administrative tool from Management Console.
Using Interfaces in .NET Remoting
1/6/2006 12:11:31 AM.
In this article, we will create a remote object that will return rows from a database table. For the sake of simplicity I have used the NorthWind database that is packed with the installation of the Microsoft SQL Server.
Using Interfaces in .NET Remoting
1/6/2006 12:11:31 AM.
In this article, we will create a remote object that will return rows from a database table. For the sake of simplicity I have used the NorthWind database that is packed with the installation of the Microsoft SQL Server.
IComparable: Under the Hood
12/23/2005 1:14:35 AM.
We now calling Array.Sort() on C# Types such as int, char, string will automatically do sorting based on that type.
IComparable: Under the Hood
12/23/2005 1:14:35 AM.
We now calling Array.Sort() on C# Types such as int, char, string will automatically do sorting based on that type.
Implementing IEnumerator and IEnumerable Interfaces using Inner Class in C#
12/21/2005 12:20:49 AM.
.NET framework provides IEnumerable and IEnumerator interfaces to implement collection like behavior to user defined classes.
Hello World in different Styles
12/19/2005 6:04:50 AM.
I've attempted to write the traditional 'Hello World' in different styles. This explores the different possibilities of addressing a problem - 'Hello World' with different features of C# language and .NET framework.