C# 7.0 syntax sugars

This commit is contained in:
Bruno Logerfo
2017-03-14 08:20:29 -03:00
parent 6c8a123b68
commit f8b2fcda7a
14 changed files with 62 additions and 150 deletions

View File

@@ -46,7 +46,7 @@ namespace ArchiSteamFarm {
private readonly object FileLock = new object();
internal uint CellID {
get { return _CellID; }
get => _CellID;
set {
if ((value == 0) || (_CellID == value)) {
return;