AmitDiwan has Published 10740 Articles

Check if SortedDictionary contains the specified key or not in C#

AmitDiwan

AmitDiwan

Updated on 06-Dec-2019 10:08:09

165 Views

To check if SortedDictionary contains the specified key or not, the code is as follows −Example Live Demousing System; using System.Collections; using System.Collections.Generic; public class Demo {    public static void Main() {       SortedDictionary sortedDict = new SortedDictionary();       sortedDict.Add(100, "Mobile");       sortedDict.Add(200, "Laptop"); ... Read More

Check if Hashtable is synchronized C#

AmitDiwan

AmitDiwan

Updated on 06-Dec-2019 10:04:21

179 Views

To check if Hashtable is synchronized, the code is as follows −Example Live Demousing System; using System.Collections; public class Demo {    public static void Main() {       Hashtable hash = new Hashtable();       hash.Add("One", "Katie");       hash.Add("Two", "John");       hash.Add("Three", "Barry");   ... Read More

Removing the specified element from the List in C#

AmitDiwan

AmitDiwan

Updated on 06-Dec-2019 10:00:23

153 Views

To remove the specified element from the list, the code is as follows −Example Live Demousing System; using System.Collections.Generic; public class Demo {    public static void Main(String[] args) {       List list1 = new List();       list1.Add("One");       list1.Add("Two");       list1.Add("Three");   ... Read More

Remove the first occurrence of a specific object from the ArrayList in C#

AmitDiwan

AmitDiwan

Updated on 06-Dec-2019 09:55:19

375 Views

To remove the first occurrence of a specific object from the ArrayList, the code is as follows −Exampleusing 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

Check if a SortedList is read-only in C#

AmitDiwan

AmitDiwan

Updated on 06-Dec-2019 09:48:45

114 Views

To check if a SortedList is read-only, the code is as follows −Example Live Demousing 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");       ... Read More

Getting the keys in a SortedList object C#

AmitDiwan

AmitDiwan

Updated on 06-Dec-2019 09:43:10

115 Views

To get the keys in a SortedList object, the code is as follows −Example Live Demousing 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");       ... Read More

Add key and value into StringDictionary in C#

AmitDiwan

AmitDiwan

Updated on 06-Dec-2019 09:37:46

260 Views

To add key and value into StringDictionary, the code is as follows −Example Live Demousing System; using System.Collections; using System.Collections.Specialized; public class Demo {    public static void Main() {       StringDictionary strDict = new StringDictionary();       strDict.Add("A", "John");       strDict.Add("B", "Andy");       ... Read More

Bitwise exclusive OR operation between the elements of BitArray in C#

AmitDiwan

AmitDiwan

Updated on 06-Dec-2019 08:10:40

138 Views

Let us see how to implement Bitwise exclusive OR operation between elements of BitArray −Example Live Demousing System; using System.Collections; public class Demo {    public static void Main(){       BitArray arr1 = new BitArray(5);       BitArray arr2 = new BitArray(5);       arr1[0] = false; ... Read More

Add an object to the end of the ArrayList in C#

AmitDiwan

AmitDiwan

Updated on 06-Dec-2019 08:07:13

166 Views

To add an object to the end 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 list = new ArrayList();       list.Add("Tim");       list.Add("Katie");       list.Add("Amy"); ... Read More

How to create a SortedSet in C#?

AmitDiwan

AmitDiwan

Updated on 06-Dec-2019 08:02:33

127 Views

To create a SortedSet, the code is as follows −Example Live Demousing System; using System.Collections.Generic; public class Demo {    public static void Main(){       SortedSet set1 = new SortedSet();       set1.Add("AB");       set1.Add("BC");       set1.Add("CD");       set1.Add("EF");       ... Read More

Advertisements