Everything I have read on the internet makes me think this program should run but I keep getting an error. The error states:
"Cannot implicitly convert type 'system.collections.generic.IEnumerable' to 'string'. An implicit conversion exists".
Am I missing something?
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();
}
}