这是我的 C# 编码
public string RemoveFirstSpaces (string str)
{
if(str.Length > 0)
{
while(str[0] == " ")
{
str = str.Substring(1, str.Length - 1);
if(str.Length <= 0)
{
break;
}
}
}
return str;
}
当它进入 if stmt 时,我怎么能打破..