Choose Category
using System;using System.IO; public class ForgetCode{ public static void Main() { string str = "Coming from Forget Code"; char[] b = new char[str.Length]; b = str.ToCharArray(); foreach (char c in b) { Console.Write(c); } }}