C# project

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.

The line of code that should be printing “(o o)” is written as Console.Writeline, instead of Console.WriteLine. Coding languages are very picky about things like this.

I hope this helps!
Tiger_The_Cat

ya that helps I know its picky sometimes I just don’t see it I try to get someone other eyes to see thanks for your help

No problem! I’m glad that I could help!

This topic was automatically closed 41 days after the last reply. New replies are no longer allowed.