Interview question: What are primitive data types in C#?
In C#, According to the type of the data and size of the data, data types are classified into five types. They are: Numerical Data types Signed numerical: sbyte, short, int, long Unsigned Numerical: byte, ushort, uint, ulong Floating float, double, decimal Character related Data types Char Logical Data Types Bool General data types String…
Read More “Interview question: What are primitive data types in C#?” »