<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0170</ErrorName>
  <Examples>
    <string>// CS0170: Use of possibly unassigned field `c'
// Line: 11

struct A
{
	private long b;
	private float c;

	public A (int foo)
	{
		b = (long) c;
		c = 1;
	}
}</string>
    <string>// CS0170: Use of possibly unassigned field `a'
// Line: 23

using System;

namespace cs0170
{
	public struct Foo {
		public int a;
	}

	public class Bar
	{
		public void Inc (int x)
		{
			++x;
		}		

		static void Main ()
		{
			Foo f;
			Bar b = new Bar();
			b.Inc (f.a);
			Console.WriteLine (f.a);
		}
	}
}
</string>
  </Examples>
</ErrorDocumentation>