System Type Boolean C# with Example



System Type Boolean C# with Example

 using System;

namespace CSharpFundamentals
{
    class SystemTypeBoolean
    {
        private static void Main(string[] args)
        {
			Console.WriteLine("bool.TrueString: {0}", bool.TrueString);
			Console.WriteLine("bool.FalseString: {0}", bool.FalseString);
        }
    }
}
 

0 Comment's

Comment Form

Submit Comment