vb.net char转integer与integer转char
发布时间:2015-01-17 作者: 点击:255
在vb.net中由char转为integer时我们可以使用AscW
例如:
Dim chars() As Char = str.ToCharArray
Dim n As Long = chars.Length
Dim result As Long = 0
Dim i As Long = 0
For i = 0 To n - 1 Step 1
result += (31 ^ (n - 1 - i)) * AscW(chars(i))
Next
如果是integer转为char请使用:
Dim rndc As Char = Convert.ToChar(888)
更多关于 vb.net,char,integer 的信息
- vb.net调用java axis2生成的soap webservices(2015-04-03)
- vb.net的接口定义及使用(2015-02-21)
- vb.net中自定义结构structure的定义及使用(2015-02-17)
- vb.net中声明createfile(2015-02-17)
- vb.net的位移及与、或操作(2015-02-01)
- vb.net的char数组转成String(2015-02-01)
- vb.net中实现java字符串的hashcode(2015-01-17)
- vb.net 、java、vb等获取guid的方法(2015-01-11)
- vb.net读取及写入文件的方法(2015-01-11)
本站部分文章转载于网上,版权归原作者所有。如果侵犯您的权益,请Email和本站联系!