Hey kids!
There is a piece of code in my C++ library that I would like to recreate in C#, that is... if C#'s String has not yet come with that solution :)
for (std::string::iterator it = str.begin(); it!=str.end(); ++it) if(!std::isalpha(*it,loc)) { //do something; }I am interested specially in finding out if there are iterators in C#!
Worry is a misuse of imagination :)