IO * IOGet ( long  nodeNumber  ) 

Description:
IOGet takes a node reference number and returns a pointer to the IO object it represents.
Parameters:
nodeNumber The reference number of the node the IO is on. The first I/O node is the 0th Node. Non-I/O Nodes are not considered for this numbering schema.
Returns:
(IO*) A pointer to the IO specified.
Sample Code:
  // -- C++ -- //
  IO *io = controller->IOGet(IO_NODE_NUMBER);
  // -- C# -- //
  IO io = controller.IOGet(IO_NODE_NUMBER);
Notes:
SynqNet assigns a logical number to each I/O node that it encounters during initialization. This number will be consistent as long as the SynqNet Node's relative location on the network remains the same.
Examples:
SliceCounter.cs, SliceIO.cs, SlicePWM.cs, SynqNetOk.cpp, template.cpp, and userLimitDigitalInputAction.cpp.