Found 34494 Articles for Programming

Buffer Type in C#

Arjun Thakur
Updated on 22-Jun-2020 13:54:56

480 Views

To handle range of bytes, use Buffer Type in C#. Its method Buffer.BlockCopy copies the bytes from one byte array to another byte array.Example Live Demousing System; class Demo {    static void Main() {       // byte arrays       byte[] b1 = new byte[] {39, 45, 58 };       byte[] b2 = new byte[5];       // copying bytes from one to another       Buffer.BlockCopy(b1, 0, b2, 0, 3);       /* calling the method with the byte array b2 that has the copied elements */       bufferFunc(b2);    }    static void bufferFunc(byte[] a) {       for (int j = 0; j < a.Length; j++) {          Console.Write(a[j]);       }       Console.WriteLine();    } }Output39455800

Is it possible to resize an array in C#

Ankith Reddy
Updated on 22-Jun-2020 13:55:30

4K+ Views

You cannot resize an array in C#, but using Array.Resize you can replace the array with a new array of different size.The following is our array −char[] ch = new char[10]; ch[0] = 'a'; ch[1] = 'b';Now, resize −Array.Resize(ref ch, 10);The following is the complete example −Example Live Demousing System; class Program {    static void Main() {       char[] ch = new char[10];       ch[0] = 'a';       ch[1] = 'b';       // Resize array       Array.Resize(ref ch, 10);       // Set value for new elements     ... Read More

Combine two arrays in C#

George John
Updated on 22-Jun-2020 13:56:18

4K+ Views

Firstly, declare and initialize two arrays −int[] arr1 = { 37, 45, 65 }; int[] arr2 = { 70, 89, 118 };Now create a new list −var myList = new List(); myList.AddRange(arr1); myList.AddRange(arr2);Use the AddRange() method the arrays into the newly created list.myList.AddRange(arr1); myList.AddRange(arr2);Now convert the list into array as shown below −Example Live Demousing System; using System.Collections.Generic; class Demo {    static void Main() {       int[] arr1 = { 37, 45, 65 };       int[] arr2 = { 70, 89, 118 };       // displaying array1       Console.WriteLine("Array 1...");     ... Read More

C# NullReferenceException

Chandu yadav
Updated on 22-Jun-2020 13:56:42

224 Views

NullReferenceException occurs when you try to to access member fields, or function types that points to null.Here is an example −Example Live Demousing System; class Demo {    static void Main() {       string str = null;       if (str.Length > 0) {          Console.WriteLine(str);       }    } }OutputThe following is the output. It throws NullReferenceException, since you are tryonhg access a memebt that points to null −Unhandled Exception: System.NullReferenceException: Object reference not set to an instance of an object at Demo.Main () [0x00002] in :0 [ERROR] FATAL UNHANDLED EXCEPTION: System.NullReferenceException: Object reference not set to an instance of an object at Demo.Main () [0x00002] in :0

Enum.GetNames in C#

Arjun Thakur
Updated on 22-Jun-2020 13:57:05

24 Views

It gets an array of the names of constants in an enumeration. The following is the syntax −Enum.GetNames(Type)Here, Type is an enumeration type.The following is an example −Example Live Demousing System; class Demo {    enum Vehicle {       Car,       Motorbike,       Truck,    };    static void Main() {       // display the enum       foreach ( string res in Enum.GetNames ( typeof (Vehicle)))       Console.WriteLine (res);    } }OutputCar Motorbike Truck

Enum.GetName in C#

Ankith Reddy
Updated on 22-Jun-2020 13:57:32

533 Views

Gets the string representation of an Enum value using the Enum.GetName.It has two parameters −Type − Enumeration typeObject − Value of an enumerationThe following is an example −Example Live Demousing System; class Demo {    enum Vehicle {       Car,       Motorbike,       Truck,       Bicycles    };    static void Main() {       // Usig GetName to get the string representation of enum type       string res = Enum.GetName(typeof(Vehicle), Vehicle.Motorbike);           // Displaying       Console.WriteLine(res);    } }OutputMotorbike

The nameof keyword in C#

George John
Updated on 22-Jun-2020 13:47:39

488 Views

The nameof operator returns a string literal of an element that can be a variable, type or member.For example, the following is our variable −var vehicle = "motorbike";To get the string literal, use nameof −nameof(vehicle);The following is the code to implement nameof keyword −Example Live Demousing System; public class Program {    static void Main() {       var vehicle = "motorbike";       Console.WriteLine(nameof(vehicle));       var time = DateTime.Now.ToLocalTime();       Console.WriteLine(nameof(time));       var a = false;       Console.WriteLine(nameof(a));    } }Outputvehicle time a

Default value of bool in C#

Chandu yadav
Updated on 22-Jun-2020 13:48:03

2K+ Views

Use the default operator to get the default value of bool type −bool a = default(bool);Above, we have used the default keyword to get the default value.Let us see the code to display default value of bool −Example Live Demousing System; public class Demo {    public static void Main() {       bool a = default(bool);       // default for bool       Console.WriteLine("Default for bool type = "+a);    } }OutputThe following is the output. It shows a blank space i.e. False.Default for bool type = False

Default value of StringBuilder in C#

Arjun Thakur
Updated on 22-Jun-2020 13:48:23

427 Views

Use the default operator to get the default value of StringBuilder.StringBuilder str = default(StringBuilder);Above, we have used the default keywords to get the default value.Let us see the complete code −Example Live Demousing System; using System.Text; public class Demo {    public static void Main() {       StringBuilder str = default(StringBuilder);       Console.WriteLine("Default for StringBuilder = "+str);    } }OutputDefault for StringBuilder =The following is the output. It shows a blank space i.e. Null.Default for StringBuilder = Null

Default operator in C#

Ankith Reddy
Updated on 22-Jun-2020 13:48:48

517 Views

Using the default, you can get the default value of every reference and value type. The expressions set as default are evaluated at compile-time.To get the default for int −default(int);To get the default for long −default(long)Let us see the code to display default values −Example Live Demousing System; public class Demo {    public static void Main() {       int val1 = default(int);       long val2 = default(long);       bool val3 = default(bool);       // default for int       Console.WriteLine(val1);       // default for long       Console.WriteLine(val2);       // default for bol       Console.WriteLine(val3);    } }Output0 0 False

Advertisements