Accessing each character of a string
Accessing the individual characters of a string is a common part of any Section B question. This page looks at the different methods you can use to achieve this.
Method 1
Console.WriteLine("please enter a word:");
string word = Console.ReadLine();
for(int i=0; i < word.Length;i++)
{
Console.WriteLine(word[i]);
}
Console.ReadLine();