C# newbie...(again) Slowly getting used to String class (and everything else!) Wondering how to manipulate chars like a char[] array
My code below -
private void sendString(String stringToSend)
{
for(int p=0; p < stringToSend.Length; p++)
{
// I want to select individual characters from stringToSend
Console.Write(stringToSend); **<< XX HERE ? XX**
// followed by an inter-character delay
}
}
Of course, this works for the whole string. but I only want to send one charater at a time with a delay between chars. TIA