注意:请在投票前阅读整个问题。
我有以下代码。该代码用作重现。我希望这段代码能够达到Console.Read();
我想在我的项目中使用它的原因。我想在异常处理后继续执行。
using System;
using System.Data;
using System.Text;
namespace Sample
{
class Program
{
static void Main(string[] args)
{
try
{
throw new FormatException("Format");
}
catch (Exception ex)
{
if (ex is FormatException || ex is OverflowException)
{
Console.WriteLine("Caught Exception");
return;
}
throw;
}
Console.Read(); //Unreachable Code Detected.
}
我收到以下警告:
警告 1 检测到无法访问的代码 G:\Samplework\Program.cs 39
- 我该如何解决这个问题?
- 我希望代码可以访问。