AmitDiwan has Published 10740 Articles

Get an ICollection containing keys in OrderedDictionary in C#

AmitDiwan

AmitDiwan

Updated on 06-Dec-2019 12:40:43

179 Views

To get an ICollection containing keys in OrderedDictionary, 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("1", "One");       dict.Add("2", "Two");     ... Read More

Get the underlying type of the current enumeration type C#

AmitDiwan

AmitDiwan

Updated on 06-Dec-2019 12:36:43

241 Views

To return the underlying type of the current enumeration type, the code is as follows −Example Live Demousing System; public class Demo {    enum Vehicle {Car, Bus, Bike, Airplane}    public static void Main() {       try {          Vehicle v = Vehicle.Bike;     ... Read More

Get the names of the members of the current enumeration type in C#

AmitDiwan

AmitDiwan

Updated on 06-Dec-2019 12:33:51

88 Views

To get the names of the members of the current enumeration type, the code is as follows −Example Live Demousing System; public class Demo {    enum Vehicle {Car, Bus, Bike}    public static void Main() {       try {          Type type = typeof(string);   ... Read More

Convert the specified Windows file time to an equivalent local time in C#

AmitDiwan

AmitDiwan

Updated on 06-Dec-2019 12:32:33

271 Views

To convert the specified Windows file time to an equivalent local time, the code is as follows −Example Live Demousing System; public class Demo {    public static void Main() {       DateTimeOffset offset = DateTimeOffset.FromFileTime(0);       Console.WriteLine("DateTimeOffset = {0:dd} {0:y}, {0:hh}:{0:mm}:{0:ss} ", offset);    } }OutputThis ... Read More

Check if a thread belongs to managed thread pool or not in C#

AmitDiwan

AmitDiwan

Updated on 06-Dec-2019 12:31:21

233 Views

To check if a thread belongs to managed thread pool or not, the code is as follows −Example Live Demousing System; using System.Threading; public class Demo {    public static void Main() {       Thread thread = new Thread(new ThreadStart(demo));       thread.Start();    }    public static ... Read More

Check if an array is synchronized or not in C#

AmitDiwan

AmitDiwan

Updated on 06-Dec-2019 12:29:37

183 Views

To check if an array is synchronized or not, the code is as follows −Example Live Demousing System; public class Demo {    public static void Main() {       string[] products = new string[] { };       Console.WriteLine("One or more planets begin with 'E'? = {0}",   ... Read More

Check if the BitArray is read-only in C#

AmitDiwan

AmitDiwan

Updated on 06-Dec-2019 12:27:46

154 Views

To check if the BitArray is read-only, the code is as follows −Example Live Demousing System; using System.Collections; public class Demo {    public static void Main() {       BitArray arr1 = new BitArray(2);       BitArray arr2 = new BitArray(2);       arr1[0] = false;   ... Read More

Get object at the top of the Stack in C#

AmitDiwan

AmitDiwan

Updated on 06-Dec-2019 12:19:47

341 Views

To get object at the top of the Stack, the code is as follows −Example Live Demousing System; using System.Collections.Generic; public class Demo {    public static void Main() {       Stack stack = new Stack();       stack.Push("A");       stack.Push("B");       stack.Push("C");   ... Read More

Get an IDictionaryEnumerator object in OrderedDictionary in C#

AmitDiwan

AmitDiwan

Updated on 06-Dec-2019 12:14:19

154 Views

To get an IDictionaryEnumerator object in OrderedDictionary, 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("1", "One");       dict.Add("2", "Two");       ... Read More

Check if SortedSet and the specified collection contain the same elements in C#

AmitDiwan

AmitDiwan

Updated on 06-Dec-2019 12:02:47

126 Views

To check if SortedSet and the specified collection contain the same elements, the code is as follows −Exampleusing System; using System.Collections.Generic; public class Demo {    public static void Main() {       SortedSet set1 = new SortedSet();       set1.Add(100);       set1.Add(200);       ... Read More

Advertisements