Convert data types in C #

Converting data types in C # is to convert one data type to another. It is also known as Type Injection. In C #, type casting has the following two patterns:

Implicit conversion (implicit) - This conversion is done by C # in a type-safe method. For example, conversion from inheriting classes to base classes.

Explicit conversion (explicit) - This conversion is explicitly performed by the user using predefined functions. Explicit type conversions need a cast operator.

The following example illustrates an explicit transformation in C #:

 using System ; namespace QTMCsharp { class TestCsharp { static void Main ( string [] args ) { Console . WriteLine ( "Chuyen doi kieu du lieu trong C#" ); Console . WriteLine ( "-------------------------------" ); double d = 5678.74 ; int i ; // cast kieu du lieu double thanh kieu du lieu int. i = ( int ) d ; Console . WriteLine ( "Gia tri cua i = " + i ); Console . ReadKey (); } } } 

Compiling and running the above C # program will produce the following results:

Convert data types in C # Picture 1

Method to convert data types in C #

C # provides the available type conversion methods listed in the following table:

Method Description ToBoolean

Convert a type to a Boolean value, if possible

ToByte

Convert a type to a byte

ToChar

Convert a style to a Unicode character, if possible

ToDateTime

Convert a type (integer or string) into date-time structures

ToDecimal

Convert a real number or integer to a decimal type

ToDouble

Convert a type to a double type

Tont16

Convert a style into a 16-bit integer

ToInt32

Convert a style into a 32-bit integer

ToInt64

Convert a style into a 64-bit integer

ToSbyte

Convert a type to a signed byte type

ToSingle

Convert a style to a number of small floating points

ToString

Convert a style to a string

ToType

Convert a type to a specified type

ToUInt16

Convert a type to an unsigned int type

ToUInt32

Convert a type to an unsigned long type

ToUInt64

Convert a type into an unsigned big integer

The following example illustrates how to convert diverse data types into string data types in C #:

 using System ; namespace QTMCsharp { class TestCsharp { static void Main ( string [] args ) { Console . WriteLine ( "Chuyen doi kieu du lieu trong C#" ); Console . WriteLine ( "-------------------------------" ); int i = 75 ; float f = 53.005f ; double d = 2345.7652 ; bool b = true ; //su dung phuong thuc ToString() Console . WriteLine ( i . ToString ()); Console . WriteLine ( f . ToString ()); Console . WriteLine ( d . ToString ()); Console . WriteLine ( b . ToString ()); Console . ReadKey (); } } } 

Compiling and running the above C # program will produce the following results:

Convert data types in C # Picture 2

Follow tutorialspoint

Previous article: Data type in C #

Next post: Array (Array) in C #

5 ★ | 1 Vote

May be interested

  • Array (Array) in C #Photo of Array (Array) in C #
    an array stores a set of fixed-size elements in the same type. an array is used to store a data set, but it is often more useful to think of an array as a set of variables of the same type stored in adjacent memory locations.
  • String (String) in C #Photo of String (String) in C #
    in c #, you can use strings (strings) as array of characters. however, it is more common to use string keywords to declare a string variable. the string keyword is an alias for the system.string class in c #.
  • Structure (Struct) in C #Photo of Structure (Struct) in C #
    in c #, a structure is a data type. it helps you create a single variable that keeps relevant data of diverse data types. the keyword struct in c # is used to create a structure.
  • Class (Class) in C #Photo of Class (Class) in C #
    when you define a class in c #, you define a blueprint for a data type. this does not really define any data, but it defines the meaning of that class name. that is, what an object of that class consists of, what activities can be performed on that object.