用Convert類實現資料型別轉換

2021-07-27 21:27:39 字數 832 閱讀 5945

任何一門程式語言均有相關資料型別。c#也不例外,其基本資料型別有int,short,long,float,double,string等。資料型別之間可以相互轉換。

convert類是專門進行型別轉換的類,它能夠實現各種基本資料型別之間的相互轉換。

convert類常用的型別轉換方法

convert.toint32()轉換為整型(int)

convert.tochar()轉換為字元型(char)

convert.tostring()轉換為字串型(string)

convert.todatetime()轉換為日期型(datetime)

convert.todouble()轉換為雙精度浮點型(double)

conert.tosingle()轉換為單精度浮點型(float)

使用convert類轉換資料型別

using system;

using system.collection.generic;

using system.linq;

using system.text;

namespace shujuleixingzhuanhuan

",integer);

console.writeline("轉換為字串,str");

console.writeline("日期型資料轉換為字串值為",strdate);

console.readkey();}}

}

用convert類轉換時注意資料表達方式的有效性,並不是任意型別之間都可以轉換。

還有parse,toint等,之後我麼你會陸續介紹……

用Convert類實現資料型別轉換

convert類用於將乙個基本資料型別轉換為另乙個基本資料型別,返回與指定型別的值等效的型別 受支援的基型別是boolean char sbyte byte int16 int32 int64 uint16 uint32 uint64 single double decimal datetime和s...

C 資料型別轉換,Convert

內容轉換函式 舉例 convert.toint32 可以將多種型別 包括 object 引用型別 的值轉換為 int 型別,因為它有許多過載版本 2 public static int toint32 object public static int toint32 bool public stat...

CONVERT 函式 資料型別轉換

convert 函式 資料型別轉換 功能 返回轉換成提供的資料型別的表示式。語法 convert data type,expression format style 引數 data type表示式將轉換成的資料型別。expression要轉換的表示式。format style對於將字串轉換為日期或時...