Stream Reader: read int : Stream Reader « File Directory « VB.Net






Stream Reader: read int

Stream Reader: read int
 
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()

        Dim writer As BinaryWriter = New BinaryWriter(mstream)
        writer.Write(s)
        writer.Write(n)
        writer.Flush() ' Flush the buffer

        ' Reset the stream to the beginning
        mstream.Seek(0, SeekOrigin.Begin)

        ' Read from the stream
        Dim reader As BinaryReader = New BinaryReader(mstream)
        Dim s2 As String = reader.ReadString()
        Dim n2 As Integer = reader.ReadInt32()

        Console.WriteLine(s2 + " " + n2)
    End Sub
End Class


           
         
  








Related examples in the same category

1.Read all file contentRead all file content
2.Stream Reader DemoStream Reader Demo
3.StreamReader Class implements a TextReader that reads characters from a byte stream in a particular encoding.
4.Create StreamReader class for the specified stream.
5.Create StreamReader class for the specified file name.
6.StreamReader.Read reads the next character from the input stream
7.Display Integer read from a StreamReader in hex format
8.StreamReader Class Implements a TextReader that reads characters from a byte stream in a particular encoding.