C# Tutorials

  • C# Char

    Definition:Char data type holds only single character value, for example: ‘a’ or ‘A’ or ‘@’ etc. Syntax: Note that char data type has to be surrounded by single quotes.

  • C# Boolean

    Definition:Boolean data type only holds two values, either true or false. Syntax: Application:Boolean can be used in variety of cases, for example, when you need to check if one value is bigger then the other, which will return you a true or falls. Let’s break it down and see what actually happens when boolean…