public bool ConsistsOfWhiteSpace(string s){ · foreach(char c in s){ · if(c != ' ') return false; · } · return true; · }.
確定! 回上一頁