Exemplo n.º 1
0
        internal static string GetAddressDescription(DebuggedProcess proc, ulong ip)
        {
            string description = null;

            proc.WorkerThread.RunOperation(async() =>
            {
                description = await EngineUtils.GetAddressDescriptionAsync(proc, ip);
            }
                                           );

            return(description);
        }