/
n-dimens
/
pascalabcnet
Обзор
Документация
Войти
/
n-dimens
/
pascalabcnet
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
VisualPascalABCNETLinux/MonoDebugging/Debugger/IMirror.cs
20 строк
509 B
Ivan Bondarev
missing files for debugger
18 апр 2023, 18:53
18 апр 2023, 18:53
d0397a4
Код
Авторство
О чём код?
using System; namespace Mono.Debugger.Soft { /* * A Mirror represents a runtime object in the remote virtual machine. Calling * methods/properties of mirror objects potentially involves a remoting call, * which * has some overhead, and may also fail. Values of properties which are * constant (like Type.Name) are cached locally, so only the first call is * affected. * FIXME: Thread safety in the api ? */ public interface IMirror { VirtualMachine VirtualMachine { get; } } }