C#
 Computer >> コンピューター >  >> プログラミング >> C#

SortedListがC#で読み取り専用かどうかを確認します


SortedListが読み取り専用かどうかを確認するには、コードは次のとおりです-

using System;
using System.Collections;
public class Demo {
   public static void Main(String[] args) {
      SortedList list = new SortedList();
      list.Add("One", "IT");
      list.Add("Two ", "Operations");
      list.Add("Three", "Marketing");
      list.Add("Four", "Purchase");
      list.Add("Five", "Sales");
      list.Add("Six", "Finance");
      Console.WriteLine("SortedList elements...");
      foreach(DictionaryEntry d in list) {
         Console.WriteLine(d.Key + " " + d.Value);
      }
      Console.WriteLine("\nList of values...SortedList");
      IList col = list.GetValueList();
      foreach(string res in col) {
         Console.WriteLine(res);
      }
      Console.WriteLine("\nSortedList is read-only? = "+list.IsReadOnly);
   }
}

出力

これにより、次の出力が生成されます-

SortedList elements...
Five Sales
Four Purchase
One IT
Six Finance
Three Marketing
Two  Operations
List of values...SortedList
Sales
Purchase
IT
Finance
Marketing
Operations
SortedList is read-only? = False

別の例を見てみましょう-

using System;
using System.Collections;
public class Demo {
   public static void Main(String[] args) {
      SortedList list = new SortedList();
      list.Add("One", "Finance");
      list.Add("Two", "Marketing");
      list.Add("Three", "Sales");
      list.Add("Four", "Purchase");
      list.Add("Five", "Operations");
      list.Add("Six", "IT");
      Console.WriteLine("SortedList elements...");
      foreach(DictionaryEntry d in list) {
         Console.WriteLine(d.Key + " " + d.Value);
      }
      Console.WriteLine("\nIndex at key One = "+list.IndexOfKey("One"));
      ICollection col = list.Keys;
      Console.WriteLine("\nCollection of Keys...");
      foreach(string res in col)
         Console.WriteLine(res);
      Console.WriteLine("\nSortedList is read-only? = "+list.IsReadOnly);
   }
}

出力

これにより、次の出力が生成されます-

SortedList elements...
Five Operations
Four Purchase
One Finance
Six IT
Three Sales
Two Marketing
Index at key One = 2
Collection of Keys...
Five
Four
One
Six
Three
Two
SortedList is read-only? = False

  1. Python-リストが別のリストに含まれているかどうかを確認します

    2つの異なるPythonリストがある場合、最初のリストが2番目のリストの一部であるかどうかを確認する必要があります。 地図を使って参加 最初にmap関数を適用してリストの要素を取得し、次にjoin関数を適用してコンマ区切りの値のリストを作成できます。次に、in演算子を使用して、最初のリストが2番目のリストの一部であるかどうかを確認します。 例 listA = ['x', 'y', 't'] listB = ['t', 'z','a','x', 'y', 't

  2. リストがPythonでソートされているかどうかを確認します

    リストは、Pythonで最も広く使用されているデータ収集です。指定されたリストがすでにソートされているかどうかを知る必要がある場合に遭遇する可能性があります。この記事では、これを実現するためのアプローチについて説明します。 並べ替えあり 指定されたリストのコピーを取得し、それに並べ替え関数を適用して、そのコピーを新しいリストとして保存します。次に、それを元のリストと比較して、それらが等しいかどうかを確認します。 例 listA = [11,23,42,51,67] #Given list print("Given list : ",listA) listA_copy =