Hi,
How can i change integer in brackets ? I want to change “6” value in runtime.
MyProperty(6)
Regards.
Hi,
How can i change integer in brackets ? I want to change “6” value in runtime.
MyProperty(6)
Regards.
Use the Add method:
top.Add(someValue)
Look up that method in the Arrays documentation.
(you can’t change 5 to 6, but you can change the array size at runtime)
Ty.
Ty