|
Listing 14-6 extracted from chapter Unsafe code, exceptions, anonymous methods, iterators
Listing 14-5< > Listing 14-7
This listing can be compiled with the command line: csc.exe /target:exe Example_14_6.cs Errors: 0 Warnings: 0
Example_14_6.cs
public class Program {
public static void Main() {
int i = 1;
int j = 0;
int k = i/j;
}
}
Copyright Patrick Smacchia 2006 2007
|