R
radiolandog
string s = "G618964";
if (s[0] == 'G')
{
s.Remove(0,1);
}
// after stepping through this code, s = "G618964"
// I was anticipating s = "618964";
Any insight you may provide is appreciated
Thanks, - dog
if (s[0] == 'G')
{
s.Remove(0,1);
}
// after stepping through this code, s = "G618964"
// I was anticipating s = "618964";
Any insight you may provide is appreciated
Thanks, - dog