hi Frnds
i wants to display string in c#.net like
A
N
J
A
L
I
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Gareth BradleyPosted Sep 22, 2016, 3:42 PM
Ravi PatelPosted Apr 13, 2016, 12:57 AM
Manas MohapatraPosted Apr 13, 2016, 12:53 AM
ali tuncerPosted Apr 13, 2016, 12:12 AM
put characters in an array, like this :
foreach (char t in "anjali".ToCharArray())
{
Console.WriteLine(t);
}