Created
May 7, 2020 11:32
-
-
Save BanksySan/d1d707d6918c09dcd7de235f2792c388 to your computer and use it in GitHub Desktop.
Blog: Writing a Concurrent .NET Stream (1)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var memoryStream = new MemoryStream(); | |
| Console.WriteLine("CanRead = " + memoryStream.CanRead); | |
| Console.WriteLine("CanWrite = " + memoryStream.CanWrite); | |
| Console.WriteLine("CanSeek = " + memoryStream.CanSeek); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment