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 (Retired) Perform if

Mukhtar Al Maden
PLUS
Mukhtar Al Maden
Courses Plus Student 1,415 Points

What to do for this one ?

I tried several words and ways and nothing is working for me! what should I do ?

CodeChallenge.cs
string language = Console.ReadLine();
if ( language == "C#");
{

}
      Print ("C# Rocks!");

1 Answer

HIDAYATULLAH ARGHANDABI
HIDAYATULLAH ARGHANDABI
21,058 Points

Here you have declared a variable called language of type string. You put the value in the variable from the keyboard input

string language = Console.ReadLine();

Here in the if block you check if the variable data is equal to the language to C# then print the C# rocks . For printing something to console in C# you need to use Console.WriteLine("C# Rocks!");

if ( language == "C#");
{
    Console.WriteLine("C# Rocks!");
}

I wish this answer help comment me if you need further help.

Enjoy Coding