Esempio n. 1
0
        private static void ImportLabelFile(string path)
        {
            string ext = Path.GetExtension(path).ToLower();

            if (ext == ".msl")
            {
                DebugWorkspaceManager.ImportMslFile(path);
            }
            else if (ext == ".sym" || ext == ".tass")
            {
                DebugWorkspaceManager.ImportSymFile(path);
            }
            else
            {
                DebugWorkspaceManager.ImportDbgFile(path);
            }
        }