Click here to Skip to main content
15,891,905 members
Articles / Programming Languages / Visual Basic

Read Hex Value from file & write it to another file with the same value?

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
27 Jan 2013CPOL 0  
Read File as bytearray then convert them into hex:Private Function GetBytes(ByVal filename As String) As Byte() Dim fs As New FileStream(filename, FileMode.Open, FileAccess.Read) ' Create a byte array of file stream length Dim ImageData As Byte() = New Byte(fs.Length -...

Views

Daily Counts

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Business Analyst
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions