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

सी # में सरणी में पहले तत्व की अनुक्रमणिका ढूँढना

सरणी में पहले तत्व की अनुक्रमणिका खोजने के लिए, कोड इस प्रकार है -

उदाहरण

using System;
public class Demo {
   public static void Main() {
      string[] products = new string[] { "Andy", "Mark", "Gary", "Andre"};
      Console.WriteLine("One or more name begin with 'A'? = {0}",
      Array.Exists(products, ele => ele.StartsWith("A")));
      Console.WriteLine("Is the array having fixed size? = " + products.IsFixedSize);
      Console.WriteLine("Is the array read only? = " + products.IsReadOnly);
      Console.WriteLine("Is the array synchronized? = " + products.IsSynchronized);
      Console.WriteLine("Index of the 1st element = "+products.GetLowerBound(0));
   }
}

आउटपुट

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

One or more name begin with 'A'? = True
Is the array having fixed size? = True
Is the array read only? = False
Is the array synchronized? = False
Index of the 1st element = 0

उदाहरण

आइए एक और उदाहरण देखें -

using System;
public class Demo {
   public static void Main() {
      string[] products = new string[] { };
      Console.WriteLine("Is the array having fixed size? = " + products.IsFixedSize);
      Console.WriteLine("Is the array read only? = " + products.IsReadOnly);
      Console.WriteLine("Is the array synchronized? = " + products.IsSynchronized);
      Console.WriteLine("Index of the 1st element = "+products.GetLowerBound(0));
   }
}

आउटपुट

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

Is the array having fixed size? = True
Is the array read only? = False
Is the array synchronized? = False
Index of the 1st element = 0

  1. सी # में सरणी की निर्दिष्ट अनुक्रमणिका पर स्ट्रिंग कोलेक्शन कॉपी करें

    सरणी के निर्दिष्ट सूचकांक पर StringCollection को कॉपी करने के लिए, कोड इस प्रकार है - उदाहरण using System; using System.Collections.Specialized; public class Demo {    public static void Main(){       StringCollection strCol = new StringCollection();       Str

  1. सी # प्रोग्राम एक सरणी से पहला तत्व प्रदर्शित करने के लिए

    निम्नलिखित हमारी सरणी है - double[] myArr = {20.5, 35.6, 45.7, 55.6, 79.7}; पहला तत्व प्राप्त करने के लिए, पहले () विधि का उपयोग करें। myArr.AsQueryable().First(); आइए देखें पूरा कोड - उदाहरण using System; using System.Linq; using System.Collections.Generic; class Demo {    static void M

  1. पायथन - K . से पहले तत्व का सूचकांक प्राप्त करें

    एक पायथन सूची में वस्तुओं के मूल्य किसी भी क्रमबद्ध क्रम में जरूरी नहीं हैं। इससे भी अधिक ऐसी स्थिति हो सकती है जब हम केवल एक विशिष्ट मूल्य से अधिक कुछ मूल्यों में रुचि रखते हैं। इस लेख में हम देखेंगे कि हम कैसे प्राप्त कर सकते हैं गणना का उपयोग करना गणना का उपयोग करके हम सूची में तत्वों का सूचकांक