This program is not working as expected and I'm not sure why. The error is CS0266 "
Error CS0266 Cannot implicitly convert type 'System.Collections.Generic.IEnumerable<char>' to 'string'. An explicit conversion exists (are you missing a cast?)
BUT, it should work properly under using System.Linq;
using System;
using System.Linq;
namespace centuryyearsminutes
{
class Program
{
static void Main(string[] args)
{
string aa = "Hello World!";
string bb = aa.Reverse();
Console.WriteLine(bb);
}
}
}