C# Data Types

  • C# String

    What is a String in C#? In C#, a string is a sequence of characters that represents text. The ‘string’ type is an alias for ‘System.String’, which is a part of the .NET framework. Strings in C# are immutable, meaning once a string object is created, it cannot be changed. Any modification to a…

  • C# Integer

    Definition:In C#, Integer is a numerical data type which holds only whole numbers: 1, 2, 3, 4… etc. either positive or negative. Break it down to smaller pieces:int – is a variable type integer which holds only whole numbers. (integer will not accept decimal points)variableName – is the name you give to the variable.quotation marks ”…

  • C# Double and Float

    Definition:In C#, Double and Float both are numerical data type which holds positive or negative with decimal points. Difference:Float – is suited for up to 7 decimal pointsDouble – is suited for up to 15 decimal points Let’s see an example:

  • 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…