net Frame中基本数据类型的转换
见Convert类
可以满足大多数的数据类型的转换
见帮助,可以到csdn的资源下载中下载类库查看工具 wincv.exe
eg:
//to find by convert
String^ strTest = gcnew String(" ");
int ikkk = 890;
//转换为String^
strTest = Convert::ToString(ikkk);
String^ strMessage =gcnew String("");
// from module 'C:/Windows/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll'
public sealed abstract class Convert :
object