I'm trying to find out all components attached to each net in the design. However, it seems to work to get the list of nodes but the node names cannot be accessed. Even my sanity check
if (Node.Name Is Nothing) then
fails with error Scode:800a01a8 complaining about a missing object or so. MWE appended.
it works. Now could someone explain to me why I have to use isNull for Node.Name and isNothing for Net.Class? I don't understand, why the tests for existence have to be different? Are they different data types?