Files
WoofWare.PawPrint/WoofWare.PawPrint.Test/sourcesPure/ExceptionWithNoOpFinally.cs
2025-06-27 10:54:00 +00:00

21 lines
300 B
C#

using System;
namespace HelloWorldApp
{
class Program
{
static int Main(string[] args)
{
int x = 3;
try
{
return x;
}
finally
{
x = x + 1;
}
}
}
}