﻿<?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>CS0165</ErrorName>
  <Examples>
    <string>class T {
	void fun (ref int a)
	{
		if (a == 3)
		a = 2;
	}

	void x ()
	{
		int x;

		if (System.Console.Read () == 1)
			x = 1;
		fun (ref x);
	}
}
</string>
    <string>// cs0165.cs: Use of unassigned local variable
// Line: 9

class T {
	static void Main ()
	{
		int errors;

		errors += 1;
	}
}
</string>
  </Examples>
</ErrorDocumentation>