<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0144</ErrorName>
  <Examples>
    <string>// CS0144: 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 ();
		}
}</string>
    <string>// CS0144: Cannot create an instance of the abstract class or interface `X'
// Line: 11
abstract class X {
	public abstract void B ();

}

class Demo {
	static void Main ()
	{
		object x = new X ();
	}
}
</string>
    <string>// CS0144: Cannot create an instance of the abstract class or interface `X'
// Line: 11
interface X {
	void A ();

}

class Demo {
	static void Main ()
	{
		object x = new X ();
	}
}
</string>
  </Examples>
</ErrorDocumentation>