Example #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();
    }
Example #2
0
 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(SBMLNamespacesList obj)
 {
     return((obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr);
 }