Files
WoofWare.PawPrint/WoofWare.PawPrint.Test/sources/ExceptionWithNoOpCatch.cs
2025-06-01 19:37:37 +00:00

25 lines
375 B
C#

using System;
namespace HelloWorldApp
{
class Program
{
static int ReallyMain(string[] args)
{
return 10;
}
static int Main(string[] args)
{
try
{
return ReallyMain(args);
}
catch
{
throw;
}
}
}
}