Check Unicode Character as Separator in C#

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

260 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

292 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

Find Value in Internal Table itab in ABAP

Vrundesha Joshi
Updated on 09-Dec-2019 06:20:33

2K+ Views

you can use a READ statement in combination with TRANSPORTING NO FIELDS. This will skip the values to be transferred to the work area and avoid the loop. Here is an example:READ TABLE itab WITH KEY FIELD = 'ABC' TRANSPORTING NO FIELDS. IF SY-SUBRC = 0. "Field Match.” ENDIF.

jQuery Selector for Checkbox Label

Amit D
Updated on 09-Dec-2019 06:16:03

2K+ Views

To write a jQuery selector for the label of a checkbox, use the for attribute of label element.ExampleYou can try to run the following code to learn how to write a jQuery selector for the label of a checkbox:Live Demo $(document).ready(function(){    $("label[for='mysubjects1']").css("background-color", "yellow");    $("label[for='mysubjects2']").css("background-color", "gray"); });     Subjects     New Subjects

Get TypeCode for Value Type Decimal in C#

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

181 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 Hash Code for Current Decimal Instance in C#

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

166 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 String Representation to Boolean in C#

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

120 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 Current DateTime 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

342 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

271 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

Advertisements