﻿<?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>CS0136</ErrorName>
  <Examples>
    <string>// cs0136.cs: local variable j can not be declared, because there is something with that name already
// Line: 5
class X {
	public static void Bar (int j, params int [] args)
	{
		foreach (int j in args)
			;
	}
}
</string>
    <string>// cs0136: A local variable named 'i' cannot be declared in this scope because it would give a different meaning to 'i'
// Line: 8
class X {
	void b ()
	{
		int i;
		{
			string i;
		}
	}
}


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