long SynqNetNodeCountGet ( void   ) 

Description:
SynqNetNodeCountGet returns the number of nodes on the SynqNet network.
Returns:
(long) The node count.
Sample Code:
  // -- C++ -- //
  printf("There are %ld nodes on this SynqNet network\n", controller->SynqNetNodeCountGet());
  // -- C# -- //
  Console.WriteLine("There are {0} nodes on this SynqNet network", controller->SynqNetNodeCountGet());
See also:
SynqNetNetworkTypeGet
Examples:
SynqNetOk.cpp, verifyApp.cpp, and VerifyApp.cs.