Files
WoofWare.PawPrint/WoofWare.PawPrint.Test/sourcesPure/ExceptionWithNoOpCatch.cs
2025-06-27 10:54:00 +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;
}
}
}
}