Converting Data Types in C# Language
Objective
This tutorial will explain you to understand how and why a conversion of data type occur in C#. Understanding the conversion will help you to avoid error and lose data when operation happen.
Let's go
When you copy a value from one variable to another variable, a conversion must occur. Also when you want to do a operation on two difference data types, a conversion might also need occur. There are two types of conversion: implicit and explicit conversion.
Implicit Conversion
- Read more about Converting Data Types in C# Language
- Log in or register to post comments
- 206 views