|
Listing 10-18 extracted from chapter The .NET 2 type system from a C#2 point of view
Listing 10-17< > Listing 10-19
This listing can be compiled with the command line: csc.exe /target:exe Example_10_18.cs Errors: 0 Warnings: 0
Example_10_18.cs
class Program {
static void Main() {
byte i = 255;
i++; // i is equal to 0
}
}
Copyright Patrick Smacchia 2006 2007
|