0
What is bad un this C# code?
3 Respuestas
+ 2
//Corrected code part:
static void Main(string[] args)
{
string your_name = Console.ReadLine(); //missing (), added
Console.WriteLine("Hello {0}",your_name); //missing comma after {0} added
}
+ 1
I run your code and it's working, program say me my input name with hello ;)
0
There's an expected ; , but I don't know where. Can someone say me where?