<?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>CS0188</ErrorName>
  <Details>
    <Summary>
      <p>
			Before a constructor can call any instance
			methods it must initialize all of its fields. 
                </p>
    </Summary>
    <Details>
      <p>No instance member function can be called until all
		fields of the struct being constructed have been
		definitely assigned.
                </p>
    </Details>
  </Details>
  <Examples>
    <string>// cs0188-2.cs: The `this' object cannot be used before all of its fields are assigned to
// Line: 10

struct B
{
	public int a;

	public B (int foo)
	{
		Test ();
	}

	public void Test ()
	{
	}
}</string>
    <string>// cs0188.cs: The `this' object cannot be used before all of its fields are assigned to
// Line: 6

struct Sample {
        public Sample(string text) {
            Initialize();
            this.text = text;
        }

        void Initialize() {
        }
        
        string text;
}</string>
  </Examples>
</ErrorDocumentation>