What is the method to output the other net list formats?

Asked By 0 points N/A Posted on -
qa-featured

What is the method to output the other net list formats? I need help to copy & paste in between two schematic. What is the method to import ‘stf’ files to a schematic?

What can be done by it?

SHARE
Answered By 0 points N/A #85682

What is the method to output the other net list formats?

qa-featured

For you to be able to output a net list format, you will not be able to return a list using that procedure. Here are some of the things that you will need to observe:

  1. When doing that, you will need to know that you cannot  change the return type for the method that you are trying to override.
  2. The ToString()function that you may encounter implies that the method will return a string, and therefore if anything else is returned, then it will be highly unintuitive and it will mean that are problems with the code.
  3. But something else to note is that you can be able to override the ToString; you can be able to do that by just iterating through the elements of the list so as to output the string that you want.

-Richard Gabriel

 

Related Questions