Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Invalid number
The compiler detected a malformed number. For more information on integral types, see the Integral Types Table (C# Reference).
Example
The following sample generates CS1013:
// CS1013.cs
class Sample
{
static void Main()
{
int i = 0x; // CS1013
}
}