最近我說明了用VB
字節數組用法
如果你准備恢復用二進制格式保存的文本
使用System
Listing A
Private Sub ConvertByteArrayToString()
Dim btText() As Byte = {
Dim strText As String
strText = BitConverter
MessageBox
End Sub
通過System
Listing B
Private Sub ConvertByteArrayToString()
Dim btText() As Byte = {
Dim strText As String
strText = Convert
MessageBox
End Sub
以上兩種方法都可以用來建立一個二進制數據表示法
Irina Medvinskaya自
From:http://tw.wingwit.com/Article/program/net/201311/11708.html