我正在編寫一個代碼來查找c#中字符串的總長度。 代碼是作爲遵循c#:沒有預定義函數的字符串長度
class Program
{
static void Main(string[] args)
{
string str = "Amit Kumar";
int c = 0;
for(int i = 0; str[i]!="\n"; i++)
{
c++;
}
Console.WriteLine(c);
Console.ReadLine();
}
}
但它示出!=操作者不能被應用到上char或字符串類型的操作數。 你能解決我的問題嗎
問題是你的意思是要做字符'\ n',而不是字符串「\ n」。另外str.Length也是。 –
我不想使用任何預定義的函數(已在我的標題中提到) –
string.Length不是函數 –