02-28-2021 03:16 AM - edited 02-28-2021 03:24 AM
Hello,
i have a custom C# DLL with some variables that can be read and written using the getter/setter functions. This is working fine in a c# console program.
public class xxxx: yyyyy
{
public string myVariable { get; set; }
}
var myObject = x.y.CreateObject;
myObject .myVariable = "data"; //setter
string readback = myObject.myVariable; //getter
Doing the same in Teststand, then i have no data in the readback variable.
So my question is: What do i have to do that i can set/get properties in the created object and read them back?
Thanks
04-05-2021 10:23 AM