Merge pull request #57 from Johnnyxy/master

VS2013 - C# 6 auto-property initializers - issue
This commit is contained in:
Michele Cattafesta
2016-05-17 15:02:20 +02:00

View File

@@ -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;
}
}
}