Replace a Chash Array with a New Array of Different Size



To replace a C# aray with a new array, use the Array.Resize.

Withing that, set the size of the new array −

Array.Resize<char>(ref arr, 4);

Now add the new elements to the array as shown below −

Example

 Live Demo

using System;
class Program {
   static void Main() {
      char[] arr = new char[5];
      arr[0] = 'J';
      arr[1] = 'A';
      Array.Resize<char>(ref arr, 4);
      // Set value for new elements
      arr[2] = 'C';
      arr[3] = 'K';
      Console.WriteLine("Updated Array : "+ new string(arr));
   }
}

Output

Updated Array : JACK
Updated on: 2020-06-22T13:53:43+05:30

1K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements