Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Type.GetInterface() Method in C#
The Type.GetInterface() method in C# is used to get a specific interface implemented or inherited by the current Type.
Syntax
Following is the syntax −
public Type GetInterface (string name); public abstract Type GetInterface (string name, bool ignoreCase);
Example
Let us now see an example to implement the Type.GetInterface() method −
using System;
public class Demo {
public static void Main(){
Type type = typeof(double);
Type myInterface = type.GetInterface("IFormattable");
Console.WriteLine("Interface = "+myInterface);
}
}
Output
This will produce the following output −
Interface = System.IFormattable
Example
Let us now see another example to implement the Type.GetInterface() method −
using System;
public class Demo {
public static void Main(){
Type type = typeof(float);
Type myInterface = type.GetInterface("IFormattable",true);
Console.WriteLine("Interface = "+myInterface);
}
}
Output
This will produce the following output −
Interface = System.IFormattable
Advertisements