<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0175</ErrorName>
  <Examples>
    <string>// cs0175-2.cs: Use of keyword `base' is not valid in this context
// Line: 13

class DerivedClass {
        public DerivedClass() {
                base = null;
        }
}

</string>
    <string>// cs0175.cs: Use of keyword `base' is not valid in this context
// Line: 8
using System.Collections;
class Collection : CollectionBase
{
	public int Add (int x)
	{
		return ((IList) base).Add (x);
	}
}


</string>
  </Examples>
</ErrorDocumentation>