當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C# SortedDictionary.Remove()用法及代碼示例


此方法用於從SortedDictionary中刪除具有指定鍵的值。

用法:

public bool Remove (TKey key);

返回值:如果成功找到並刪除了該元素,則此方法返回true;否則,此方法返回true。否則返回false。如果在SortedDictionary中找不到 key ,則此方法返回false。


異常:如果鍵為null,則此方法將提供ArgumentNullException。

下麵的程序來說明上述方法的使用:

示例1:

// C# code to remove the entry with 
// the specified key from the 
// SortedDictionary 
using System; 
using System.Collections.Generic; 
  
class GFG { 
  
    // Driver code 
    public static void Main() 
    { 
  
        // Create a new dictionary of 
        // strings, with string keys. 
        SortedDictionary<string, string> myDict =  
          new SortedDictionary<string, string>(); 
  
        // Adding key/value pairs in myDict 
        myDict.Add("Australia", "Canberra"); 
        myDict.Add("Belgium", "Brussels"); 
        myDict.Add("Netherlands", "Amsterdam"); 
        myDict.Add("China", "Beijing"); 
        myDict.Add("Russia", "Moscow"); 
        myDict.Add("India", "New Delhi"); 
  
        // To get count of key/value pairs in myDict 
        Console.WriteLine("Total key/value pairs"
            + " in myDict are : " + myDict.Count); 
  
        // Remove the entry with the specified 
        // key from the Dictionary 
        myDict.Remove("Russia"); 
  
        Console.WriteLine("After remove operation"); 
  
        // To get count of key/value pairs in myDict 
        Console.WriteLine("Total key/value pairs"
           + " in myDict are : " + myDict.Count); 
    } 
}
輸出:
Total key/value pairs in myDict are : 6
After remove operation
Total key/value pairs in myDict are : 5

示例2:

// C# code to remove the entry with 
// the specified key from the 
// SortedDictionary 
using System; 
using System.Collections.Generic; 
  
class GFG { 
  
    // Driver code 
    public static void Main() 
    { 
  
        // Create a new SortedDictionary 
        // of ints, with int keys. 
        SortedDictionary<int, int> myDict =  
          new SortedDictionary<int, int>(); 
  
        // Adding key/value pairs in myDict 
        myDict.Add(9, 8); 
        myDict.Add(3, 4); 
        myDict.Add(4, 7); 
        myDict.Add(1, 7); 
  
        // To get count of key/value pairs in myDict 
        Console.WriteLine("Total key/value pairs "
             + "in myDict are : " + myDict.Count); 
  
        // Remove the entry with the specified 
        // key from the Dictionary 
        myDict.Remove(9); 
  
        Console.WriteLine("After remove operation"); 
  
        // To get count of key/value pairs in myDict 
        Console.WriteLine("Total key/value pairs in"
                 + " myDict are : " + myDict.Count); 
    } 
}
輸出:
Total key/value pairs in myDict are : 4
After remove operation
Total key/value pairs in myDict are : 3

參考:



相關用法


注:本文由純淨天空篩選整理自rupesh_rao大神的英文原創作品 C# | SortedDictionary.Remove() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。