fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. bool? yes = true;
  8. bool? no = false;
  9. bool? maybe = null;
  10.  
  11. Console.WriteLine($"yes: {yes} {!yes == true}");
  12. Console.WriteLine($"no: {no} {!no == true}");
  13. Console.WriteLine($"maybe: {maybe} {!maybe == true}");
  14. }
  15. }
Success #stdin #stdout 0.04s 23912KB
stdin
Standard input is empty
stdout
yes: True False
no: False True
maybe:  False