<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0594</ErrorName>
  <Examples>
    <string>// CS0594: Floating-point constant is outside the range of type `decimal'
// Line: 6

class X {
	public static void Main() {
		decimal d = 12311111111111111111111111111111111111111111111111m;
	}
}
</string>
    <string>// CS0594: Floating-point constant is outside the range of type `float'
// Line: 6

class X {
	public static void Main() {
		float b = 11111111111111111111111111111111111122222222222222222f;
	}
}
</string>
    <string>// CS0594: Floating-point constant is outside the range of type `float'
// Line: 6

class X {
	public static void Main() {
		float f = 1.0e999999f;
	}
}
</string>
    <string>// CS0594: Floating-point constant is outside the range of type `double'
// Line: 6

class X {
	public static void Main() {
		double dbl = 1.0e99999;
	}
}
</string>
  </Examples>
</ErrorDocumentation>