15
1
using static System.Console;
2
3
namespace UsingStatic
4
{
5
public class Program
6
{
7
public static void Main(string[] args)
8
{
9
string value = "Merhaba";
10
WriteLine(value);
11
12
ReadLine();
13
}
14
}
15
}
Cached Result
Compilation error (line 2, col 7): Identifier expected; 'static' is a keyword
Compilation error (line 2, col 14): Expected class, delegate, enum, interface, or struct
Compilation error (line 2, col 14): Expected class, delegate, enum, interface, or struct