e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
26 lines
322 B
C#
26 lines
322 B
C#
using System;
|
|
|
|
class Program
|
|
{
|
|
static int counter;
|
|
|
|
static int Main ()
|
|
{
|
|
FormatPrint ($"Case {1}");
|
|
if (counter != 1)
|
|
return 1;
|
|
|
|
FormatPrint ($"Case {3}");
|
|
if (counter != 2)
|
|
return 2;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void FormatPrint (FormattableString message)
|
|
{
|
|
Console.WriteLine(message);
|
|
++counter;
|
|
}
|
|
}
|