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

cs0144-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0f1adba284416409343f7013861fa335409cf9d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0144-3.cs: Cannot create an instance of the abstract class or interface `ITest'
// Line: 9
// Compiler options: -r:CS0144-3-lib.dll

public class SampleClass {
		public void Main ()
		{
			ITest modelo;
			modelo= new ITest ();
		}
}