AmitDiwan has Published 10740 Articles

Removing the specified key entry from HybridDictionary in C#

AmitDiwan

AmitDiwan

Updated on 05-Dec-2019 13:05:42

181 Views

To remove the specified key entry from HybridDcitionary, the code is as follows −Example Live Demousing System; using System.Collections; using System.Collections.Specialized; public class Demo {    public static void Main() {       HybridDictionary dict1 = new HybridDictionary();       dict1.Add("A", "Books");       dict1.Add("B", "Electronics");     ... Read More

Remove the first occurrence from the StringCollection in C#

AmitDiwan

AmitDiwan

Updated on 05-Dec-2019 13:00:00

136 Views

To remove the first occurrence from the StringCollection, the code is as follows −Example Live Demousing System; using System.Collections.Specialized; public class Demo {    public static void Main() {       StringCollection stringCol = new StringCollection();       String[] arr = new String[] { "100", "200", "100", "400", "500" ... Read More

Check if the StringCollection is read-only in C#

AmitDiwan

AmitDiwan

Updated on 05-Dec-2019 12:55:55

139 Views

To check if the StringCollection is read-only, the code is as follows −Example Live Demousing System; using System.Collections.Specialized; public class Demo {    public static void Main() {       StringCollection stringCol = new StringCollection();       String[] arr = new String[] { "100", "200", "300", "400", "500" }; ... Read More

Check if the specified string is in the StringCollection in C#

AmitDiwan

AmitDiwan

Updated on 05-Dec-2019 12:52:23

101 Views

To check if the specified string is in the StringCollection, the code is as follows −Example Live Demousing System; using System.Collections.Specialized; public class Demo {    public static void Main() {       StringCollection stringCol = new StringCollection();       String[] arr = new String[] { "100", "200", "300", ... Read More

Remove the entry with specified key from ListDictionary in C#

AmitDiwan

AmitDiwan

Updated on 05-Dec-2019 12:48:41

122 Views

To remove the entry with specified key from ListDictionary, the code is as follows −Example Live Demousing System; using System.Collections; using System.Collections.Specialized; public class Demo {    public static void Main(){       ListDictionary dict1 = new ListDictionary();       dict1.Add("A", "Books");       dict1.Add("B", "Electronics");     ... Read More

Remove the entry at specified index from OrderedDictionary in C#

AmitDiwan

AmitDiwan

Updated on 05-Dec-2019 12:43:34

120 Views

To remove the entry at specified index from OrdererdDictionary, the code is as follows −Example Live Demousing System; using System.Collections; using System.Collections.Specialized; public class Demo {    public static void Main() {       OrderedDictionary dict = new OrderedDictionary();       dict.Add("A", "Books");       dict.Add("B", "Electronics");   ... Read More

Check if two SortedList objects are equal in C#

AmitDiwan

AmitDiwan

Updated on 05-Dec-2019 12:39:56

152 Views

To check if two SortedList objects are equal, the code is as follows −Example Live Demousing System; using System.Collections; public class Demo {    public static void Main(String[] args) {       SortedList list1 = new SortedList();       list1.Add("One", 1);       list1.Add("Two ", 2);     ... Read More

Check if two OrderedDictionary objects are equal in C#

AmitDiwan

AmitDiwan

Updated on 05-Dec-2019 12:34:02

140 Views

To check if two OrderedDictionary objects are equal, the code is as follows −Example Live Demousing System; using System.Collections; using System.Collections.Specialized; public class Demo {    public static void Main() {       OrderedDictionary dict1 = new OrderedDictionary();       dict1.Add("A", "Books");       dict1.Add("B", "Electronics");     ... Read More

Remove the element with the specified key from a SortedList in C#

AmitDiwan

AmitDiwan

Updated on 05-Dec-2019 12:29:52

287 Views

To remove the element with the specified key from a SortedList, the code is as follows −Example Live Demousing System; using System.Collections; public class Demo {    public static void Main(String[] args) {       SortedList sortedList = new SortedList();       sortedList.Add("A", "1");       sortedList.Add("B", "2"); ... Read More

Remove the element at the specified index of the ArrayList in C#

AmitDiwan

AmitDiwan

Updated on 05-Dec-2019 12:26:06

181 Views

To remove the element at the specified index of the ArrayList, the code is as follows −Example Live Demousing System; using System.Collections; public class Demo {    public static void Main(String[] args) {       ArrayList list1 = new ArrayList();       list1.Add("A");       list1.Add("B");     ... Read More

Advertisements