Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0023-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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()); 
	} 
}