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

class X {
	public static void Main() {
		double dbl = 1.0e99999;
	}
}
</string>
    <string>// cs0594-3.cs: 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-4.cs: Floating-point constant is outside the range of type `float'
// Line: 6

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

class X {
	public static void Main() {
		decimal d = 12311111111111111111111111111111111111111111111111m;
	}
}
</string>
  </Examples>
</ErrorDocumentation>