More analysis suggested tidy ups.

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon
2019-02-06 23:41:56 +00:00
parent d6d8c4e13c
commit 0e8a530573
9 changed files with 26 additions and 42 deletions

View File

@@ -8,10 +8,8 @@ namespace EightBit
public sealed class PortEventArgs : EventArgs
{
private byte port;
public PortEventArgs(byte value) => this.Port = value;
public PortEventArgs(byte value) => this.port = value;
public byte Port => this.port;
public byte Port { get; }
}
}