<?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>CS0030</ErrorName>
  <Examples>
    <string>// cs0030.cs : Cannot convert type `bool' to `float'
// Line : 12

public class Blah {

	public static int Main ()
	{
		const bool k = false;		
		float f = (float) k;
		
	}
}
</string>
    <string>// cs0030-3.cs : Cannot convert type `string' to `char'
// Line : 8

public class Blah {

	public static int Main ()
	{
		char ch = (char)"a";		
	}
}
</string>
    <string>// cs0030-4.cs: Cannot convert type `Position' to `Board.Stone'
// Line: 20

using System;
using System.Collections;

public class Position {
}

public class Board {
    public enum Stone : int {
	None = 0,
	    Empty = 1,
	    Black = 2,
	    White = 3
    }

    public Stone Get(Position p)
    {
	return (Stone)p;
    }

    public static void Main() {
    }
    
}






</string>
    <string>// CS0030: Cannot convert type `System.Enum' to `Blah.S'
// Line: 12

using System;

public class Blah {
	struct S {}
	enum E { Val }
	
	public static void Main ()
	{
		S s = (S)(Enum)E.Val;
	}
}</string>
    <string>// cs0030.cs : Cannot convert type `Blah' to `float'
// Line : 12

public class Blah {

	public static int Main ()
	{
		Blah k;
		
		k = new Blah ();
		
		float f = (float) k;
		
	}
}
</string>
  </Examples>
</ErrorDocumentation>