赞
踩
- using System;
- namespace ExceptionDemo
- {
- class Program
- {
- static void Main(string[] args)
- {
- try
- {
- Test();
- }
- catch (Exception e)
- {
- Console.WriteLine("1=====================");
- Console.WriteLine(e);
- Console.WriteLine("1=====================");
- }
- Console.ReadKey();
- }
- public static void Test()
- {
- try
- {
- int i = 0;
- i = 10 / i;
- }
- catch (Exception e)
- {
- Console.WriteLine("2=====================");
- Console.WriteLine(e);
- throw new Exception("错误的堆栈信息:",e);
- Console.WriteLine("2=====================");
- }
- }
- }
- }
对技术感兴趣的小伙伴,可以给我留言或私聊我,我们可以互相讨论学习。
欢迎关注我个人的公众号
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。