C# – Type Conversion

Jenis konversi mengubah satu jenis data ke jenis lain. Ia juga dikenal sebagai Type Casting. Di C#, tipe casting memiliki dua bentuk :

  • Implicit type conversion – Konversi ini dilakukan oleh C # dengan cara yang aman. Misalnya, adalah konversi dari tipe integral yang lebih kecil ke yang lebih besar dan konversi dari kelas turunan ke kelas dasar.
  • Explicit type conversion – Konversi ini dilakukan secara eksplisit oleh pengguna menggunakan fungsi yang telah ditentukan sebelumnya. Konversi eksplisit membutuhkan operator cast.

Contoh berikut menunjukkan jenis konversi eksplisit :

using System;

namespace TypeConversionApplication {
   class ExplicitConversion {
      static void Main(string[] args) {
         double d = 5673.74; 
         int i;
         
         // cast double to int.
         i = (int)d;
         Console.WriteLine(i);
         Console.ReadKey();
      }
   }
}

Ketika kode di atas dikompilasi dan dijalankan, itu menghasilkan hasil sebagai berikut :

5673

C# Type Conversion Methods

C # menyediakan metode konversi tipe built-in berikut :

Sr.No.Methods & Description
1ToBoolean
Converts a type to a Boolean value, where possible.
2ToByteConverts a type to a byte.
3ToCharConverts a type to a single Unicode character, where possible.
4ToDateTimeConverts a type (integer or string type) to date-time structures.
5ToDecimalConverts a floating point or integer type to a decimal type.
6ToDoubleConverts a type to a double type.
7ToInt16Converts a type to a 16-bit integer.
8ToInt32Converts a type to a 32-bit integer.
9ToInt64Converts a type to a 64-bit integer.
10ToSbyteConverts a type to a signed byte type.
11ToSingleConverts a type to a small floating point number.
12ToStringConverts a type to a string.
13ToTypeConverts a type to a specified type.
14ToUInt16Converts a type to an unsigned int type.
15ToUInt32Converts a type to an unsigned long type.
16ToUInt64Converts a type to an unsigned big integer.

Contoh berikut mengonversi berbagai tipe nilai menjadi tipe string :

using System;

namespace TypeConversionApplication {
   class StringConversion {
      static void Main(string[] args) {
         int i = 75;
         float f = 53.005f;
         double d = 2345.7652;
         bool b = true;

         Console.WriteLine(i.ToString());
         Console.WriteLine(f.ToString());
         Console.WriteLine(d.ToString());
         Console.WriteLine(b.ToString());
         Console.ReadKey();
            
      }
   }
}

Ketika kode di atas dikompilasi dan dijalankan, itu menghasilkan hasil sebagai berikut :

75
53.005
2345.7652
True

Leave a Reply

Your email address will not be published. Required fields are marked *