本文整理匯總了VB.NET中System.IO.MemoryStream.Read方法的典型用法代碼示例。如果您正苦於以下問題:VB.NET MemoryStream.Read方法的具體用法?VB.NET MemoryStream.Read怎麽用?VB.NET MemoryStream.Read使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.IO.MemoryStream
的用法示例。
在下文中一共展示了MemoryStream.Read方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的VB.NET代碼示例。
示例1: Byte
' Read the first 20 bytes from the stream.
byteArray = _
New Byte(CType(memStream.Length, Integer)){}
count = memStream.Read(byteArray, 0, 20)
示例2: MainClass
' 導入命名空間
Imports System.Data
Imports System.IO
Imports System.IO.IsolatedStorage
Imports System.Text
Imports System.Runtime.Serialization
Imports System.Runtime.Serialization.Formatters
Imports System.Runtime.Serialization.Formatters.Soap
Imports System.Runtime.Serialization.Formatters.Binary
Imports System.Windows.Forms
Public Class MainClass
Shared Sub Main(ByVal args As String())
Dim s As String = "111"
Dim n As Integer = 452
Dim mstream As Stream = New MemoryStream()
' Write to the stream
Dim bytes1() As Byte = UnicodeEncoding.Unicode.GetBytes(s)
Dim bytes2() As Byte = BitConverter.GetBytes(n)
mstream.Write(bytes1, 0, bytes1.Length)
mstream.Write(bytes2, 0, bytes2.Length)
' Reset the stream to the beginning
mstream.Seek(0, SeekOrigin.Begin)
' Read from the stream
Dim bytes3(mstream.Length - 4) As Byte
Dim bytes4(4) As Byte
mstream.Read(bytes3, 0, bytes3.Length)
mstream.Read(bytes4, 0, bytes4.Length)
' Do something with the data
Console.WriteLine(UnicodeEncoding.Unicode.GetString(bytes3) + " " + BitConverter.ToInt32(bytes4, 0))
End Sub
End Class