TestStand Interface Parameters - .NET Call Parameters
- Updated2026-02-03
- 1 minute(s) read
TestStand Interface Parameters - .NET Call Parameters
TestStand Interface Parameters
In most cases, pass TestStand interface classes, such as SequenceContext , Execution , Thread , Engine , and so on, by value and not by reference. TestStand interface classes are already reference types. You do not need to pass them by reference to avoid creating copies.
Pass TestStand interface classes by reference only when you want the method to be able to return a different object instance than the object instance you passed in. When you pass TestStand interface classes by reference, use an object reference variable for the parameter argument instead of passing the interface object directly and assign the interface you want to pass as the input value to the object reference variable before performing the call.