Found 34489 Articles for Programming

Implicit conversion from 8-bit signed integer (SByte) to Decimal in C#

Chandu yadav
Updated on 23-Jun-2020 07:50:23

169 Views

SByte represents an 8-bit signed integer.To implicitly convert an 8-bit signed integer to a Decimal, firstly set an sbyte value.sbyte val = 51;To convert sbyte to decimal, assign the value.decimal d; d = val;Let us see another example.Exampleusing System; public class Demo {    public static void Main() {       sbyte val = 39;       decimal d;       Console.WriteLine("Implicit conversion from 8-bit signed integer (sbyte) to Decimal");       d = val;       Console.WriteLine("Decimal = "+dec);    } }

C# Program to rename a file

Samual Sam
Updated on 23-Jun-2020 07:51:35

1K+ Views

Use the Move method to rename a file.Let’s say the file name is −D:\tom.txtNow, to update it to the following, use the Move() method.D:\tim.txtLet us see the complete code.Exampleusing System; using System.IO; public class Demo {    public static void Main() {       File.Move(@"D:\tom.txt", @"D:\tim.txt");       Console.WriteLine("File moved successfully!");    } }

Year Month ("Y") Format Specifier in C#

Arjun Thakur
Updated on 23-Jun-2020 07:51:56

215 Views

The Year Month format specifier represents a custom date and time format string.It is defined by the DateTimeFormatInfo.YearMonthPattern property.Here is the custom format string.yyyy MMMMExample Live Demousing System; using System.Globalization; class Demo {    static void Main() {       DateTime date = new DateTime(2018, 9, 7, 7, 55, 20);       Console.WriteLine(date.ToString("Y",CultureInfo.CreateSpecificCulture("en-US")));    } }OutputSeptember 2018

C# Program to remove a node at the end of the Linked List

karthikeya Boyini
Updated on 23-Jun-2020 07:52:28

109 Views

The following is our LinkedList.string [] employees = {"Patrick", "Robert", "John", "Jacob", "Jamie"}; LinkedList list = new LinkedList(employees);Now, let’s say you need to remove the last node i.e. “Jamie”. For that, use the RemoveLast() method.list.RemoveLast();Example Live Demousing System; using System.Collections.Generic; class Demo {    static void Main() {       string [] employees = {"Patrick", "Robert", "John", "Jacob", "Jamie"};       LinkedList list = new LinkedList(employees);       foreach (var emp in list) {          Console.WriteLine(emp);       }       // removing last node       list.RemoveLast();       Console.WriteLine("LinkedList ... Read More

LinkedList RemoveLast() Method in C#

Ankith Reddy
Updated on 23-Jun-2020 07:53:04

294 Views

Firstly, declare a LinkedList and add nodes.int [] num = {92, 98, 110, 130, 145, 170, 230, 240, 250, 300, 330}; LinkedList myList = new LinkedList(num);Remove the last node from the LinkedList using the RemoveLast() method.myList.RemoveLast();Example Live Demousing System; using System.Collections.Generic; class Demo {    static void Main() {       int [] num = {92, 98, 110, 130, 145, 170, 230, 240, 250, 300, 330};       LinkedList myList = new LinkedList(num);       foreach (var n in myList) {          Console.WriteLine(n);       }       // removing last node       myList.RemoveLast();       Console.WriteLine("LinkedList after removing the last node...");       foreach (var n in myList) {          Console.WriteLine(n);       }    } }Output92 98 110 130 145 170 230 240 250 300 330 LinkedList after removing the last node... 92 98 110 130 145 170 230 240 250 300

Implicit conversion from Int32 to Decimal in C#

George John
Updated on 23-Jun-2020 07:54:11

2K+ Views

The int type represents a 32-bit signed integer i.e. Int32.To implicitly convert an Int32 to a Decimal, firstly set a Int32 value.int val = 392;To convert Int32 to decimal, assign the value.decimal d; d = val;Let us see another example.Exampleusing System; public class Demo {    public static void Main() {       int val = 767;       decimal d;       Console.WriteLine("Implicit conversion from Int32 (integer) to Decimal");       d = val;       Console.WriteLine("Decimal : "+dec);    } }

C# Program to remove a node at the beginning of a Linked List

Samual Sam
Updated on 23-Jun-2020 07:53:38

147 Views

To remove a node at the beginning of a LinkedList, use the RemoveFirst() method.string [] employees = {"Peter", "Robert", "John", "Jacob"}; LinkedList list = new LinkedList(employees);Now, to remove the first element, use the RemoveFirst() method.list.RemoveFirst();Let us see the complete example.Example Live Demousing System; using System.Collections.Generic; class Demo {    static void Main() {       string [] employees = {"Peter", "Robert", "John", "Jacob"};       LinkedList list = new LinkedList(employees);       foreach (var emp in list) {          Console.WriteLine(emp);       }       // removing first node       list.RemoveFirst(); ... Read More

C# Program to find the longest string from an array of strings using Lambda Expression

Chandu yadav
Updated on 23-Jun-2020 07:56:57

731 Views

The following is our string array −string[] arr = { "Java", "HTML", "CSS", "JavaScript"};Use the Aggregate method and set a Lambda Expression to find the string with more number of characters.Here, the resultant string should have more number of characters than the initial seed value i.e. “jQuery” here.Example Live Demousing System; using System.Linq; class Demo {    static void Main() {       string[] arr = { "Java", "HTML", "CSS", "JavaScript"};       string res = arr.AsQueryable().Aggregate("jQuery", (longest, next) => next.Length >       longest.Length ? next : longest, str => str.ToLower());       Console.WriteLine("String with more ... Read More

LinkedList RemoveFirst() Method in C#

karthikeya Boyini
Updated on 23-Jun-2020 07:55:13

431 Views

Let’s say the following is our LinkedList with integer nodes.int [] num = {29, 40, 67, 89, 198, 234}; LinkedList myList = new LinkedList(num);Now, if you want to remove the first element from the list, then use the RemoveFirst() method.myList.RemoveFirst();Example Live Demousing System; using System.Collections.Generic; class Demo {    static void Main() {       int [] num = {29, 40, 67, 89, 198, 234};       LinkedList myList = new LinkedList(num);       foreach (var n in myList) {          Console.WriteLine(n);       }       // removing first node       myList.RemoveFirst();       Console.WriteLine("LinkedList after removing the first node...");       foreach (var n in myList) {          Console.WriteLine(n);       }    } }Output29 40 67 89 198 234 LinkedList after removing the first node... 40 67 89 198 234

Represent Int32 as a Hexadecimal String in C#

Samual Sam
Updated on 23-Jun-2020 07:44:35

4K+ Views

To represent Int32 as a Hexadecimal string in C#, use the ToString() method and set the base as the ToString() method’s second parameter i.e. 16 for Hexadecimal.Int32 represents a 32-bit signed integer.Firstly, set an Int32 variable.int val = 9898;Now, convert it to a hexadecimal string by including 16 as the second parameter.Convert.ToString(val, 16)Example Live Demousing System; class Demo {    static void Main() {       int val = 9898;       Console.WriteLine("Integer: "+val);       Console.Write("Hex String: "+Convert.ToString(val, 16));    } }OutputInteger: 9898 Hex String: 26aa

Advertisements