Prints the supported SBML Levels and Versions for this copy of libSBML.
public static class PrintSupported
{
[STAThread]
private static void Main(string[] args)
{
Console.WriteLine("Supported by LibSBML " +
libsbml.getLibSBMLDottedVersion());
Console.WriteLine();
SBMLNamespacesList supported = SBMLNamespaces.getSupportedNamespaces();
for (uint i = 0; i < supported.getSize(); i++)
{
SBMLNamespaces current = supported.get(i);
Console.WriteLine("\tSBML Level: " + current.getLevel() +
" Version: " + current.getVersion());
}
Console.WriteLine();
}
}