this comes up not sure what it means
Program.cs(12,13): error CS0117: ‘Console’ does not contain a definition for ‘Writeline’ [/home/ccuser/workspace/c-sharp-console-creatures/c-sharp-hello-world-run-some-c-sharp.csproj]
The build failed. Fix the build errors and run again.
using System;
namespace ConsoleCreatures
{
class Program
{
static void Main()
{
/*making a creature*/
Console.WriteLine(" .-.");
Console.Writeline("(o o)");
}
}
}
its from the project thats the code.