C# hello world error

public static class HelloWorld 
{ 
   public static class HelloWorld 
   public static string Merhaba() => “Merhaba Dünya” } 
{

what’s wrong?

What do the tests say?

Hello! I think that the expected response is “Hello World” (string that contains those exact words). Have you tried changing it from your text to “Hello World”?

c# hello world gave an error in my work exercism c# course the question is this:
“Hello, World!” is the traditional first program to start programming in a new language or environment.

The goals are simple:

Modify the given code to produce the string “Hello, World!”. Run the test suite and make sure it succeeds. Submit your solution and check it on the website. If all goes well, you will be ready to receive your first real exercise.

public static class HelloWorld
{
static void Main(string args)
{
Console.WriteLine(“Hello, World!”)
}
}
This is the code I wrote

the code I wrote was correct thank you

Yes, but it’s not what the tests want to see.

Please watch the video on https://exercism.org/tracks/csharp/exercises/hello-world – that will guide you through completing Hello World and give you an idea of how Exercism exercises are structured.

“Correct” means it does what you want? Or that it does what the tests want? If it doesn’t pass the tests, it’s not “correct” in the second sense.

You might want to reset the exercise and look at the given code more closely.