What we will take a gander at through this article is C# Program to Deliver a Third Exhibit by Annexing Two Unique Clusters We will check this exhaustively through this article out.

C# Program to Produce a Third Array by Appending Two Different Arrays
//Program to produce a third array by
//appending two different arrays in C#.
using System;
class Demo
{
static void Main()
{
int[] intArr1 = {1,2,3,4,5};
int[] intArr2 = {6,7,8,9,0};
int[] intArr3 = new int[10];
int totalLengthInBytes = 0;
totalLengthInBytes = intArr1.Length * sizeof(int);
Buffer.BlockCopy(intArr1, 0, intArr3, 0, totalLengthInBytes);
totalLengthInBytes = intArr2.Length * sizeof(int);
Buffer.BlockCopy(intArr2, 0, intArr3, totalLengthInBytes, totalLengthInBytes);
foreach (int items in intArr3)
{
Console.Write(items+ " ");
}
Console.WriteLine();
}
}
1 2 3 4 5 6 7 8 9 0
Press any key to continue . . .
Final Words
What we realized through this article is C# Program to Create a Third Cluster by Affixing Two Distinct Exhibits. Likewise in the event that you have any questions if it’s not too much trouble, leave a remark by means of the remark box. Furthermore, we ask that you benefit every individual who imparted this article to your companions.