Found 2587 Articles for Csharp

Check whether the Unicode character is a separator character in C#

AmitDiwan
Updated on 09-Dec-2019 06:24:15

248 Views

To check whether the Unicode character is a separator character, the code is as follows −Example Live Demousing System; public class Demo {    public static void Main(){       bool res;       char val = ', ';       Console.WriteLine("Value = "+val);       res = Char.IsSeparator(val);       Console.WriteLine("Is the value a separator? = "+res);    } }OutputThis will produce the following output −Value = , Is the value a separator? = FalseExampleLet us now see another example − Live Demousing System; public class Demo {    public static void Main(){       ... Read More

Convert Decimal to equivalent 8-bit unsigned integer in C#

AmitDiwan
Updated on 09-Dec-2019 06:21:28

282 Views

To convert the value of the specified Decimal to the equivalent 8-bit unsigned integer, the code is as follows −Example Live Demousing System; public class Demo {    public static void Main(){       Decimal val1 = 6.59m;       Decimal val2 = 30.12m;       Decimal val3 = 69.34m;       Console.WriteLine("Decimal 1 = "+val1);       Console.WriteLine("Decimal 2 = "+val2);       Console.WriteLine("Decimal 3 = "+val3);       byte res1 = Decimal.ToByte(val1);       byte res2 = Decimal.ToByte(val2);       byte res3 = Decimal.ToByte(val3);       Console.WriteLine("Byte value1 (Decimal ... Read More

Get the TypeCode for value type Decimal in C#

AmitDiwan
Updated on 09-Dec-2019 06:15:28

173 Views

To get the TypeCode for value type Decimal, the code is as follows −Example Live Demousing System; public class Demo {    public static void Main(){       Decimal val = Decimal.MaxValue;       Console.WriteLine("Decimal Value = {0}", val);       Console.WriteLine("HashCode = {0}", (val.GetHashCode()) );       TypeCode type = val.GetTypeCode();       Console.WriteLine("TypeCode = "+type);    } }OutputThis will produce the following output −Decimal Value = 79228162514264337593543950335 HashCode = 1173356544 TypeCode = DecimalExampleLet us now see another example − Live Demousing System; public class Demo {    public static void Main(){     ... Read More

Get the hash code for the current Decimal instance in C#

AmitDiwan
Updated on 09-Dec-2019 06:11:04

151 Views

To get the hash code for the current Decimal instance, the code is as follows −Example Live Demousing System; public class Demo {    public static void Main(){       Decimal val = 135269.38193M;       Console.WriteLine("Decimal Value = {0}", val);       Console.WriteLine("HashCode = {0}", (val.GetHashCode()) );    } }OutputThis will produce the following output −Decimal Value = 135269.38193 HashCode = 1328665595ExampleLet us now see another example − Live Demousing System; public class Demo {    public static void Main(){       Decimal val = Decimal.MaxValue;       Console.WriteLine("Decimal Value = {0}", val);       Console.WriteLine("HashCode = {0}", (val.GetHashCode()) );    } }OutputThis will produce the following output −Decimal Value = 79228162514264337593543950335 HashCode = 1173356544

Convert the specified string representation of a logical value to its Boolean equivalent in C#

AmitDiwan
Updated on 09-Dec-2019 06:08:28

111 Views

To convert the specified string representation of a logical value to its Boolean equivalent, the code is as follows −Example Live Demousing System; public class Demo {    public static void Main(){       bool val;       bool flag;       val = Boolean.TryParse("true", out flag);       Console.WriteLine("Result = "+val);    } }OutputThis will produce the following output −Example Live Demousing System; public class Demo {    public static void Main() {       bool val; bool flag;       val = Boolean.TryParse("$", out flag);       Console.WriteLine("Result = "+val);    } }OutputThis will produce the following output −Result = False

Convert the value of the current DateTime object to UTC in C#

AmitDiwan
Updated on 09-Dec-2019 06:03:43

2K+ Views

To convert the value of the current DateTime object to Coordinated Universal Time (UTC), the code is as follows −Example Live Demousing System; public class Demo {    public static void Main() {       DateTime d = new DateTime(2019, 12, 11, 7, 11, 25);       Console.WriteLine("Date = {0}", d);       DateTime res = d.ToUniversalTime();       Console.WriteLine("String representation = {0}", res);    } }OutputThis will produce the following output −Date = 11/11/2019 7:11:25 AM String representation = 11/11/2019 7:11:25 AMExampleLet us now see another example − Live Demousing System; public class Demo {    public ... Read More

Capacity of a List in C#

AmitDiwan
Updated on 09-Dec-2019 05:59:30

330 Views

To get the capacity of a 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");       list1.Add("Four");       list1.Add("Five");       Console.WriteLine("Elements in List1...");       foreach (string res in list1){          Console.WriteLine(res);       }       Console.WriteLine("Capacity of List1 = "+list1.Capacity);       List list2 = new List();       list2.Add("India");     ... Read More

Union of two HashSet in C#

AmitDiwan
Updated on 09-Dec-2019 05:29:16

263 Views

Let us see an example to get the Union of two HashSetExample Live Demousing System; using System.Collections.Generic; public class Demo {    public static void Main(){       HashSet set1 = new HashSet();       set1.Add(100);       set1.Add(200);       set1.Add(300);       set1.Add(400);       set1.Add(500);       set1.Add(600);       Console.WriteLine("HashSet1 elements...");       foreach(int ele in set1){          Console.WriteLine(ele);       }       HashSet set2 = new HashSet();       set2.Add(100);       set2.Add(200);       set2.Add(300);     ... Read More

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

AmitDiwan
Updated on 06-Dec-2019 12:42:14

144 Views

To check if HashSet and the specified collection contain the same elements, the code is as follows −Example Live Demousing System; using System.Collections.Generic; public class Demo {    public static void Main() {       HashSet set1 = new HashSet();       set1.Add("One");       set1.Add("Two");       set1.Add("Three");       set1.Add("Four");       set1.Add("Five");       set1.Add("Six");       set1.Add("Seven");       HashSet set2 = new HashSet();       set2.Add("One");       set2.Add("Two");       set2.Add("Three");       set2.Add("Four");       Console.WriteLine("Does it contains the same ... Read More

Get an ICollection containing keys in OrderedDictionary in C#

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

150 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");       dict.Add("3", "Three");       dict.Add("4", "Four");       dict.Add("5", "Five");       dict.Add("6", "Six");       dict.Add("7", "Seven");       dict.Add("8", "Eight");       ICollection col = dict.Keys;       String[] strKeys = new String[dict.Count];       col.CopyTo(strKeys, 0);     ... Read More

Advertisements