<?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>CS0233</ErrorName>
  <Examples>
    <string>// cs0233.cs: `MainClass.S' does not have a predefined size, therefore sizeof can only be used in an unsafe context (consider using System.Runtime.InteropServices.Marshal.SizeOf)
// Line: 10

public class MainClass {
	struct S
	{
	}
	
        static int Main () {
                return sizeof(S);
        }
}


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