Files
linux-packaging-mono/mcs/errors/cs0542-2.cs

11 lines
161 B
C#
Raw Normal View History

// CS0542: `Program.Program(object)': member names cannot be the same as their enclosing type
// Line: 6
class Program
{
void Program (object sender)
{
}
}