singrdk/base/Windows/csic/test/try.cs

17 lines
237 B
C#
Raw Permalink Normal View History

2008-11-17 18:29:00 -05:00
using System;
public class Test {
static int x=3;
public static int Main() {
try {
if (x>2)
return(0);
else if (x<0)
return(1);
}
finally {
Console.WriteLine("not so fast");
}
return(5);
}
}