Converting bool to a string in C#

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