Files
WoofWare.PawPrint/WoofWare.PawPrint.Test/sources/BasicException.cs
2025-05-23 14:04:13 +01:00

25 lines
374 B
C#

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