Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

C# C# Basics Methods Defining a Method

Matthew Thomas
Matthew Thomas
2,922 Points

Need to define a spell method.

Anyway to define a spell method since I tried everything at this point?

Program.cs
using System;

class Program
{
    static void spell()
    {
    Console.Writeline("c");
    Console.Writeline("a");
    Console.Writeline("t");
    }

    public static void Main(string[] args)
    {
        Spell();                

    }
}

1 Answer

Mark Sebeck
MOD
Mark Sebeck
Treehouse Moderator 37,341 Points

Hi Matthew Thomas . Remember C# is case sensitive. You are missing a few capital letters. Spell() needs to have a capital S and WriteLine needs a capital L. Hope this helps and keep at it!

Mark Sebeck
Mark Sebeck
Treehouse Moderator 37,341 Points

Also not sure why you changed Main to public. Need to delete public also.