Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> C#

टाइप करें। गेटइंटरफेस () सी # में विधि

C# में Type.GetInterfaces() मेथड का इस्तेमाल सभी इंटरफेस को लागू करने या मौजूदा टाइप से इनहेरिट करने के लिए किया जाता है।

सिंटैक्स

निम्नलिखित वाक्य रचना है -

public abstract Type[] GetInterfaces ();

उदाहरण

आइए अब Type.GetInterfaces() मेथड को लागू करने के लिए एक उदाहरण देखें -

using System;
public class Demo {
   public static void Main(){
      Type type = typeof(float);
      Type myInterface = type.GetInterface("IFormattable",true);
      Type[] myInterfaces = type.GetInterfaces();
      Console.WriteLine("Interface = "+myInterface);
      Console.WriteLine("All the Interfaces...");
      for (int i = 0; i < myInterfaces.Length; i++)
      Console.WriteLine(""+myInterfaces[i]);
   }
}

आउटपुट

यह निम्नलिखित आउटपुट देगा -

Interface = System.IFormattable
All the Interfaces...
System.IComparable
System.IFormattable
System.IConvertible
System.IComparable`1[System.Single]
System.IEquatable`1[System.Single]

उदाहरण

आइए अब Type.GetInterfaces() विधि को लागू करने के लिए एक और उदाहरण देखें -

using System;
public class Demo {
   public static void Main(){
      Type type = typeof(int);
      Type myInterface = type.GetInterface("IFormattable");
      Type[] myInterfaces = type.GetInterfaces();
      Console.WriteLine("Interface = "+myInterface);
      Console.WriteLine("All the Interfaces...");
      for (int i = 0; i < myInterfaces.Length; i++)
      Console.WriteLine(""+myInterfaces[i]);
   }
}

आउटपुट

यह निम्नलिखित आउटपुट देगा -

Interface = System.IFormattable
All the Interfaces...
System.IComparable
System.IFormattable
System.IConvertible
System.IComparable`1[System.Int32]
System.IEquatable`1[System.Int32]

  1. Type.GetArrayRank () विधि सी # में

    C# में Type.GetArrayRank() विधि एक सरणी में आयामों की संख्या प्राप्त करती है। सिंटैक्स public virtual int GetArrayRank (); आइए अब Type.GetArrayRank() पद्धति को लागू करने के लिए एक उदाहरण देखें - उदाहरण using System; public class Demo {    public static void Main(string[] args) {   &n

  1. टाइप। एक्वाल्स () सी # में विधि

    C# में Type.Equals() विधि यह निर्धारित करती है कि वर्तमान प्रकार का अंतर्निहित सिस्टम प्रकार निर्दिष्ट ऑब्जेक्ट या प्रकार के अंतर्निहित सिस्टम प्रकार के समान है या नहीं। सिंटैक्स public virtual bool Equals (Type o); public override bool Equals (object o); ऊपर, पैरामीटर वे ऑब्जेक्ट हैं जिनके अंतर्नि

  1. ElementAt () विधि सी # में

    ElementAt() C# में एक System.Linq विधि है जिसका उपयोग किसी विशेष अनुक्रमणिका पर तत्व प्राप्त करने और प्रदर्शित करने के लिए किया जाता है। हमारा स्ट्रिंग ऐरे निम्नलिखित है - string[] arr = { "One", "Two", "Three", "Four", "Five" }; अब इंडेक्स 0 पर एक