<?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>CS0612</ErrorName>
  <Examples>
    <string>// cs0612-2.cs: `Foo.Bar' is obsolete
// Line: 8
// Compiler options: -r:CS0612-2-lib.dll -warnaserror

public class Bar {
        public static int Main ()
        {
                Foo foo = new Foo ();
                return foo.Bar;
        }
}
</string>
    <string>// cs0612.cs: `A.Value' is obsolete
// Line: 13
// Compiler options: -warnaserror

class A {
    [System.Obsolete]
    int Value {
        set {
        }
    }
    
    public A () {
        Value = 4;
    }
}</string>
  </Examples>
</ErrorDocumentation>