mirror of
https://github.com/S7NetPlus/s7netplus.git
synced 2026-02-17 22:38:27 +08:00
Merge pull request #57 from Johnnyxy/master
VS2013 - C# 6 auto-property initializers - issue
This commit is contained in:
@@ -6,8 +6,13 @@
|
||||
public VarType VarType { get; set; }
|
||||
public int DB { get; set; }
|
||||
public int StartByteAdr { get; set; }
|
||||
public int Count { get; set; } = 1;
|
||||
public int Count { get; set; }
|
||||
|
||||
public object Value { get; set; }
|
||||
|
||||
public DataItem()
|
||||
{
|
||||
Count = 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user