Writes a region of a byte array to the current stream. : Binary File Write « File Directory « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Date Time
8.Development
9.Event
10.File Directory
11.Generics
12.GUI
13.Internationalization I18N
14.Language Basics
15.LINQ
16.Network Remote
17.Reflection
18.Security
19.Thread
20.Windows Presentation Foundation
21.Windows System
22.XML
23.XML LINQ
VB.Net » File Directory » Binary File WriteScreenshots 
Writes a region of a byte array to the current stream.
 
Imports System
Imports System.IO

Public Class BinaryRW
    Shared Sub Main()
        Const upperBound As Integer = 100
        Dim dataArray(upperBoundAs Byte
        Dim randomGenerator As New Random
        randomGenerator.NextBytes(dataArray)

        Dim binWriter As New BinaryWriter(New MemoryStream())

        binWriter.Write(dataArray, 0, dataArray.Length)

        Dim binReader As New BinaryReader(binWriter.BaseStream)

        binReader.BaseStream.Position = 0

        Dim verifyArray(upperBoundAs Byte
        If binReader.Read(verifyArray, 0, dataArray.Length<> dataArray.Length Then
            Console.WriteLine("Error writing the data.")
            Return
        End If
    End Sub
End Class

   
  
Related examples in the same category
1.Creating a random file
2.Use BinaryWriter to store information into a binary file
3.Save Structure to a Binary File
4.Gets the underlying stream of the BinaryWriter.
5.BinaryWriter.Seek Method Sets the position within the current stream.
6.BinaryWriter.Write Method Writes an unsigned byte to the current stream and advances the stream position by one byte.
7.BinaryWriter.Write(Byte[]) Writes a byte array to the underlying stream.
8.Writes a Unicode character
9.Writes a character array
10.Writes a section of a character array
11.Writes a length-prefixed string
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.