<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0144</ErrorName>
  <Examples>
    <string>// cs0144-2.cs: 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>
    <string>// 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 ();
		}
}</string>
    <string>// cs0144.cs: 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>
  </Examples>
</ErrorDocumentation>