thegrudge

BooleanVariable

Nov 13th, 2014
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.19 KB | None | 0 0
  1. using System;
  2. class BooleanVariable
  3. {
  4.     static void Main()
  5.     {
  6.         bool isFemale = false;
  7.         Console.WriteLine("The value of the variable isFemale is: {0}", isFemale);
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment