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

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

</string>
    <string>// cs0175: wrong context for use of `base' keyword
// Line: 8
using System.Collections;
class Collection : CollectionBase
{
	public int Add (int x)
	{
		return ((IList) base).Add (x);
	}
}


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