12 lines
234 B
C#
12 lines
234 B
C#
|
// CS1585: Member modifier `static' must precede the member type and name
|
||
|
// Line: 7
|
||
|
using System;
|
||
|
|
||
|
class t
|
||
|
{
|
||
|
public void static Main (string[] args)
|
||
|
{
|
||
|
Console.WriteLine("Hello");
|
||
|
}
|
||
|
}
|