如何將VBNET字符串轉換成字節數組?
Dim s As String = "123456"'獲取數組Dim b As Byte() = Encoding.ASCII.GetBytes(s)'顯示 Dim v As ByteFor Each v In b Debug.Print(v)Next
上一篇山東菜都有哪些宴席
如何將VBNET字符串轉換成字節數組?
Dim s As String = "123456"'獲取數組Dim b As Byte() = Encoding.ASCII.GetBytes(s)'顯示 Dim v As ByteFor Each v In b Debug.Print(v)Next