What Is Character Array in C#, Explain With an Example?
What is character array in C#, explain with an example? char []ch = { '1','2','3','4','5'}; char[] ch1 = "Hello"; //This is an error in c# using System; using System.Collections.Generic; using…