Activity overview
Latest activity by sobarowski
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...
GetString replacement
I am upgrading an old project to the Redgate DLLs version 11. The code calls ExecutionBlock.GetString, but that method is apparently no longer valid (even though the documentation says to use GetS...