M
mp
is this the only (or best) way to step through the characters in a string?
for (int CharPos = 0; CharPos < InputString.Length; CharPos++)
{
Debug.Print(InputString.Substring(CharPos,1))
}
thanks
mark
for (int CharPos = 0; CharPos < InputString.Length; CharPos++)
{
Debug.Print(InputString.Substring(CharPos,1))
}
thanks
mark