<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0719</ErrorName>
  <Examples>
    <string>// CS0719: Array elements cannot be of static type `StaticClass'
// Line: 12

using System;

static class StaticClass
{
}

class MainClass
{
	Type Type {
		get {
			return typeof (StaticClass []);
		}
	}
}
</string>
    <string>// CS0719: Array elements cannot be of static type `StaticClass'
// Line: 10

static class StaticClass {
}

class MainClass {
    public static object Method ()
    {
        return new StaticClass [3];
    }
}
</string>
  </Examples>
</ErrorDocumentation>