由于空格的ASCII码值是因此在去掉字符串中所有的空格时只需循环访问字符串中的所有字符并判断它们的ASCII码值是不是即可去掉字符串中所有空格的关键代码如下
CharEnumeratorCEnumerator=textBoxTextGetEnumerator();
while(CEnumeratorMoveNext())
{
byte[]array=newbyte[];
array=SystemTextEncodingASCIIGetBytes(CEnumeratorCurrentToString());
intasciicode=(short)(array[]);
if(asciicode!=)
{
textBoxText+=CEnumeratorCurrentToString();
}
}