12 lines
234 B
C#
Raw Normal View History

// 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");
}
}