using System;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
string s = "c# programmer";
CharEnumerator e = s.GetEnumerator();
while (e.MoveNext())
{
char ch = e.Current;
Console.WriteLine(ch);
}
}
}
}
/*
run:
c
#
p
r
o
g
r
a
m
m
e
r
*/