Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and medical aesthetics - What's the difference between double int string in C# programming?
What's the difference between double int string in C# programming?
This is the difference between data types, which is very different. In short:

Double: double precision, floating point type, actually used to represent numbers with decimals, such as 5.5555;

Int: plastic, no decimal point, only 5, no 5.0;

String: String type, usually declared in double quotation marks, such as "Hello You!" .

However, this kind of thing should be explained in detail in textbooks.