Exemplo n.º 1
0
        public bool CheckMappings(int typeToken)
        {
            DecompileInformation data = null;

            DebugInformation.TryGetValue(typeToken, out data);
            DecompileInformation information = data as DecompileInformation;

            if (information == null)
            {
                return(false);
            }

            if (information.CodeMappings == null)
            {
                return(false);
            }

            return(true);
        }