Additional Information
You can reference your .NET assembly from the configuration file with absolute or relative paths, for example using
href="file:///C:/MyNetAssemblies/Test.dll"/
in the href field is referencing the absolute path: C:/MyNetAssemblies/Test.dll, while using
href="./Test.dll"/
is a relative path referencing the current working directory, meaning the executable or LabVIEW project location.
Another alternative is to use System.Reflection that can be used to load assemblies at runtime. It needs additional code for handling instance creation and method invocation. The assembly will not get listed as a dependency in LabVIEW and you will not be able to use property or invoke nodes on that assembly directly. This approach is usually not recommended unless it is necessary and when a configuration file cannot be used.