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

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

            return(true);
        }