cv4ab-api-dotnet icon indicating copy to clipboard operation
cv4ab-api-dotnet copied to clipboard

AutoReadValue leads to Stack Overflow

Open MattCosturos opened this issue 4 years ago • 0 comments

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

MattCosturos avatar May 08 '20 19:05 MattCosturos