11 lines
218 B
C#
11 lines
218 B
C#
|
// CS1552: Array type specifier, [], must appear before parameter name
|
||
|
// Line: 6
|
||
|
|
||
|
class T {
|
||
|
// To fix: change (string args[]) to (string [] args)
|
||
|
public static int Main (string args[])
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
}
|