﻿<?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>CS0162</ErrorName>
  <Examples>
    <string>// cs0162.cs: Unreachable code detected
// Line: 12
// Compiler options: -t:library

using System;

class E
{
   public void Method (int i)
   {
       throw new ArgumentNullException ();
       Console.WriteLine ("Once upon a time..");
   }
}
</string>
  </Examples>
</ErrorDocumentation>