Open MattCosturos opened 4 years ago
AutoRead functionality leads to a stack overflow.
tag.Value Getter calls Read(). (Tag.cs line 113) Read() uses tag.Value (Tag.cs line 172) This is an endless loop.
Tag.CS - line 172 OldValue = DeepClone(Value);
You probably want to do OldValue = DeepClone(_value);
AutoRead functionality leads to a stack overflow.
tag.Value Getter calls Read(). (Tag.cs line 113) Read() uses tag.Value (Tag.cs line 172) This is an endless loop.
Tag.CS - line 172 OldValue = DeepClone(Value);
You probably want to do OldValue = DeepClone(_value);