Data types in C#
int float double byte decimal char bool
Numbers with no decimal of fractional parts Floating point number with decimal places Default floating point number and can hold a much wider range. Has a precision of about 15 or 16 Also referes to integral numbers but has a narrower range- 0-255.Most of the time we would use int instead of byte- unless the computer has memory space issues. Stores a decimal number but has a smaller range than float and double. However has a greater precision 28-29 Character. Used to store single unicode characters True or False