C# – What is DataType used for? I don’t understand the concept of how to apply it correctly, I googled enough
Akarsh Answered question August 22, 2022
C#, similar to C++ and Java is a strongly typed language. In a strongly typed language, we must provide a variable type to indicate what type of data we are going to store. For Ex: integer, money, text, float etc.
Ex:
int myCounter = 0;
string firstname = “First”;
KoderShop Answered question August 22, 2022
Recent Comments