示例#1
0
    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();
    }