blob: 800029d30ca241217273aa302e94e8ca4b673175 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// CS0023: The `.' operator cannot be applied to operand of type `void'
// Line: 12
using System;
public class Testing
{
public static void DoNothing() {}
public static void Main()
{
Console.WriteLine(DoNothing().ToString());
}
}
|