x fixed VS2013 - C# 6 auto-property initializers - issue

This commit is contained in:
Johnnyxy
2016-05-17 14:19:42 +02:00
parent 5c04125d55
commit 821d470e4b

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