Comments
Sort by recent activity
Thanks Alex,
Right after I posted this, I figured out the GetStream() method, convert that to a string, and everything worked.
Here's the code (VB) in case anyone needs it:
Dim stream As Stream = block.GetStream()
stream.Seek(0, SeekOrigin.Begin)
Dim streamReader As StreamReader = New StreamReader(stream)
Dim strBlock As String = streamReader.ReadToEnd() / comments
Thanks Alex,
Right after I posted this, I figured out the GetStream() method, convert that to a string, and everything worked.
Here's the code (VB) in case anyone needs it:
Dim stream As Stream = b...