Пример #1
0
        public static PDBFile ReadPDBFile(string path)
        {
            PDBFile pdb = new PDBFile();

            if (!pdb.Read(path))
            {
                return(null);
            }

            return(pdb);
        }
Пример #2
0
        public bool Open(string path)
        {
            PDBFile pdb = PDBFile.ReadPDBFile(path);

            if (pdb == null)
            {
                return(false);
            }
            _currentFile = pdb;
            _currentPath = path;
            UpdateDisplay();

            return(true);
        }