Explain why implicit numeric conversions are necessary and how C# chooses operands to convert
implicit numeric conversions are takes places when the conversion is happening safely where there is no data loss.
short myshort = 5;
int myint = myshort;
In the above example this is type safe and there is no data loss so we dont need write any explicit conversions
C# chooses based on the type whether the target type can fit into the source type
Note : Please comment below if you have concerns. I am here to help you
If you like my answer please rate and help me it is very Imp for me
Get Answers For Free
Most questions answered within 1 hours.