Simple types / Boolean

using System;

var sunIsStar = true;
var str = sunIsStar.ToString();
//str is "True"

Console.WriteLine(str);