dotnet-installer/TestAssets/NonRestoredTestProjects/AppThrowingException/App/Program.cs
2017-03-02 20:35:20 -08:00

12 lines
184 B
C#

using System;
namespace AppThrowing
{
class MyException : Exception
{
static void Main(string[] args)
{
throw new MyException();
}
}
}