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: 5ce866d779c02c9e9fe13a6f084762acca7d56f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs0023-3.cs: The `.' operator can not be applied to operands of type 'void'
// Line: 12

using System; 
 
public class Testing 
{ 
	public static void DoNothing() {} 
	 
	public static void Main() 
	{ 
	 	Console.WriteLine(DoNothing().ToString()); 
	} 
}