Found 27759 Articles for Server Side Programming

C# Linq Last() Method

karthikeya Boyini
Updated on 23-Jun-2020 09:03:47

986 Views

Get the last element from a sequence using the Linq Last() method.The following is our array.int[] val = { 10, 20, 30, 40 };Now, get the last element.val.AsQueryable().Last();Example Live Demousing System; using System.Collections.Generic; using System.Linq; class Demo {    static void Main() {       int[] val = { 10, 20, 30, 40 };       // getting last element       int last_num = val.AsQueryable().Last();       Console.WriteLine("Last element: "+last_num);    } }OutputLast element: 40

Convert.ToUInt64 Method in C#

Ankith Reddy
Updated on 23-Jun-2020 09:03:26

125 Views

Use the Convert.ToUInt64() method to convert a specified value to a 64-bit unsigned integer.The following is our char.char ch = 'a';Now, let’s convert it to a 64-bit unsigned integer.ulong res; res = Convert.ToUInt64(ch);Here is the complete example.Example Live Demousing System; public class Demo {    public static void Main() {       char ch = 'a';       ulong res;       res = Convert.ToUInt64(ch);       Console.WriteLine("Converted char value '{0}' to {1}", ch, res);    } }OutputConverted char value 'a' to 97

Convert.ToByte Method in C#

Arjun Thakur
Updated on 23-Jun-2020 09:04:35

806 Views

The Convert.ToByte method is used to convert a specified value to an 8-bit unsigned integer.Let’s say we have a char variable.Char charVal = ‘a’;Now, convert it to an 8-bit unsigned integer.byte byteVal = Convert.ToByte(charVal);Let us see another example now.Example Live Demousing System; public class Demo {    public static void Main() {       char[] charVal = { 'p', 'q', 'r', 's' };       foreach (char c in charVal) {          byte byteVal = Convert.ToByte(c);          Console.WriteLine("{0} is converted to = {1}", c, byteVal);       }    } }Outputp is converted to = 112 q is converted to = 113 r is converted to = 114 s is converted to = 115

Convert.ToBoolean Method in C#

Samual Sam
Updated on 23-Jun-2020 09:04:09

1K+ Views

The Convert.ToBoolean method is used to convert a specified value to an equivalent Boolean value.The following is our double type.double doubleNum = 329.34;To convert it to Boolean, use the Convert.ToBoolean() method.bool boolNum; boolNum = System.Convert.ToBoolean(doubleNum);Let us see another example.Example Live Demousing System; public class Demo {    public static void Main() {       double doubleNum = 3.4;       bool boolNum;       // Double to bool       boolNum = System.Convert.ToBoolean(doubleNum);       System.Console.WriteLine("{0} as a Boolean = {1}.", doubleNum, boolNum);    } }Output3.4 as a Boolean = True.

Convert.ChangeType Method in C#

Chandu yadav
Updated on 23-Jun-2020 09:05:00

2K+ Views

The ChangeType() method returns an object of the specified type and whose value is equivalent to the specified object.Let’s say we have a double type.double val = -3.456Now, use the ChangeType method to change the type to integer.num = (int)Convert.ChangeType(val, TypeCode.Int32);Let us see the complete example.Example Live Demousing System; public class Demo {    public static void Main() {       double val = -3.456;       int num = (int)Convert.ChangeType(val, TypeCode.Int32);       Console.WriteLine("{0} converted to an Int32: {1}", val, num);    } }Output-3.456 converted to an Int32: -3

C# Console.WindowWidth Property

karthikeya Boyini
Updated on 23-Jun-2020 09:05:38

249 Views

The WindowWidth property gets or sets the width of the console window.Declare a variable.int width;Now, get the width of the current window.width = Console.WindowWidth;The following is the complete example.Example Live Demousing System; using System.Numerics; using System.Globalization; class Demo {    static void Main() {       int width;       int height;       width = Console.WindowWidth;       height = Console.WindowHeight;       Console.WriteLine("Current window width = "+width);       Console.WriteLine("Current window height = "+height);    } }OutputCurrent window width = 0 Current window height = 0

Represent Int32 as a String in C#

Samual Sam
Updated on 23-Jun-2020 09:06:04

167 Views

Int32 represents a 32-bit signed integer. To represent it as a string, use the ToString() method.Firstly, declare and initialize an Int32 variable.int val = 1023;Now, represent it as a string.val.ToString()Let us see the complete example.Example Live Demousing System; class Demo {    static void Main() {       int val = 1023;       Console.Write("Integer converted to string = "+val.ToString());    } }OutputInteger converted to string = 1023

C# String.PadRight Method

George John
Updated on 23-Jun-2020 09:06:37

230 Views

Pad the end of the string with spaces using the PadRight() method. You can also pad it with a Unicode character.Let’s say the following is our string.string myStr = "Text1";To set a padding at the end of the above string, use the PadRight method.myStr.PadRight(10);Here is the complete example.Example Live Demousing System; class Demo {    static void Main() {       string myStr = "Text1";       // set padding at the end       Console.Write(myStr.PadRight(10));       Console.WriteLine("Text2");    } }OutputText1 Text2

C# Math.DivRem Method

karthikeya Boyini
Updated on 23-Jun-2020 09:07:46

148 Views

Use the Math.DivRem method to calculate the quotient of two numbers and return the remainder.Firstly, set dividend and divisor.// dividend long dividend = 30; // divisor long divisor = 7;Now, use the DivRem method.long quotient = Math.DivRem(dividend, divisor, out rem);Example Live Demousing System; using System.Globalization; class Demo {    static void Main() {       // remainder       long rem;       // dividend       long dividend = 98;       // divisor       long divisor = 9;       long quotient = Math.DivRem(dividend, divisor, out rem);       Console.WriteLine("{0} \ {1} = {2} and remainder = {3}", dividend, divisor, quotient, rem);    } }Output98 \ 9 = 10 and remainder = 8

C# Math.BigMul Method

Ankith Reddy
Updated on 23-Jun-2020 09:07:03

130 Views

Use the Math.BigMul() method to find the product of two 32-bit numbers.The following are our two numbers.int one = 345272828; int two = 887685744;Now, get the product.long res; res = Math.BigMul(one, two);Example Live Demousing System; using System.Globalization; class Demo {    static void Main() {       int one = 345272828;       int two = 887685744;       long res;       res = Math.BigMul(one, two);       Console.WriteLine("{0} * {1} = {2}", one, two, res);    } }Output345272828 * 887685744 = 306493767206164032

Advertisements