public static PDBFile ReadPDBFile(string path) { PDBFile pdb = new PDBFile(); if (!pdb.Read(path)) { return(null); } return(pdb); }
public bool Open(string path) { PDBFile pdb = PDBFile.ReadPDBFile(path); if (pdb == null) { return(false); } _currentFile = pdb; _currentPath = path; UpdateDisplay(); return(true); }