Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and medical aesthetics - What is the conversion principle between different plastic surgery in c# language?
What is the conversion principle between different plastic surgery in c# language?
There are implicit conversion and display conversion, such as int type can be converted into double type.

Such as double a =10; int b = a; Is implicit

Display such as double a= 10, int b = int (a);