﻿<?xml version="1.0" encoding="utf-8"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0535</ErrorName>
  <Examples>
    <string> 
using System; 
 
public interface IStack {
	void Insert (int index, object value);
	object this [int index] { set; }
}

public class Stack : IStack {
	object IStack.this [int index] {
		set {}
	}
}

public class D {
	static void Main () {}
}
</string>
    <string>// cs0535.cs: 'Class' does not implement interface member 'Interface.Method()'
// Line: 8

interface Interface {
        void Method();
}

class Class: Interface {
}


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