Doing some resharper clean up

This commit is contained in:
Adam Hathcock
2017-05-19 10:52:49 +01:00
parent 3197ef289c
commit 8be931bbcb
106 changed files with 456 additions and 563 deletions

View File

@@ -32,20 +32,20 @@ namespace SharpCompress.IO
public Stream Stream { get; }
public override bool CanRead { get { return true; } }
public override bool CanRead => true;
public override bool CanSeek { get { return false; } }
public override bool CanSeek => false;
public override bool CanWrite { get { return false; } }
public override bool CanWrite => false;
public override void Flush()
{
throw new NotSupportedException();
}
public override long Length { get { throw new NotSupportedException(); } }
public override long Length => throw new NotSupportedException();
public override long Position { get { throw new NotSupportedException(); } set { throw new NotSupportedException(); } }
public override long Position { get => throw new NotSupportedException(); set => throw new NotSupportedException(); }
public override int Read(byte[] buffer, int offset, int count)
{