using System;
public class Test
{
public bool? IsBool {get; set;} = false;
}
public class Program
public static void Main()
var t = new Test();
Console.WriteLine("IsBool: " + t.IsBool);