Month: 6 years ago

blog

Type Conversion in C#

The process of converting one type to another is called type conversion. In C#, you can perform the following kinds of conversions: Implicit conversions Explicit conversions User-defined conversions Conversion with a helper class To go more in detail about Implicit and Explicit conversions read my previous article Boxing and Unboxing in C#. Implicit conversions An implicit […]

Ottorino Bruni