111,092
社区成员




[STAThread]
public static void Main(string[] args)
{
#if DEBUG
Application.ThreadException += Application_ThreadException;
#endif
#if DEBUG
Process();
#else
try
{
Process();
}
catch(Exceptin ex)
{
........
}
#endif
[Conditional("Release")]
static void test1()
{
}
[Conditional("DEBUG")]
static void test2()
{
}