What is Type casting in C#?
Answers
Answered by
0
Type casting is a way to convert a variable from one data type to another data type. For example, if you want to store a long value into a simple integer then you can typecast long to int..There are two types of type casting in c language that are Implicit conversions and Explicit Conversions.
Similar questions