2
在互聯網上閱讀的所有內容都會讓我覺得該程序應該運行,但我一直收到錯誤。錯誤狀態:嘗試創建程序以反轉字符串時發生錯誤
「不能將類型'system.collections.generic.IEnumerable'隱式轉換爲'字符串'。存在隱式轉換」。
我錯過了什麼嗎?
class Program
{
static void Main(string[] args)
{
string entry;
Console.Write("Input String: ");
entry = Console.ReadLine();
entry = entry.Reverse();
//Error occurs here^
Console.Write(entry);
Console.ReadKey();
}
}
真棒,謝謝! –