blob: f776bac7a219a1a5dfc8fd787dcbec76960b3ada (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System;
namespace HelloWorld {
public class MainClass {
private static readonly bool _trueThat = _trueThat = CheckTrueThat();
public static void Main(string[] args)
{
}
static bool CheckTrueThat()
{
return true;
}
}
}
|