/
n-dimens
/
pascalabcnet
Обзор
Документация
Войти
/
n-dimens
/
pascalabcnet
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
VisualPascalABCNETLinux/MonoDebugging/Debugger/CustomAttributeNamedArgumentMirror.cs
37 строк
705 B
Ivan Bondarev
missing files for debugger
18 апр 2023, 18:53
18 апр 2023, 18:53
d0397a4
Код
Авторство
О чём код?
using System; using System.Runtime.InteropServices; using System.Reflection; namespace Mono.Debugger.Soft { public struct CustomAttributeNamedArgumentMirror { CustomAttributeTypedArgumentMirror arg; PropertyInfoMirror prop; FieldInfoMirror field; internal CustomAttributeNamedArgumentMirror (PropertyInfoMirror prop, FieldInfoMirror field, CustomAttributeTypedArgumentMirror arg) { this.arg = arg; this.prop = prop; this.field = field; } public PropertyInfoMirror Property { get { return prop; } } public FieldInfoMirror Field { get { return field; } } public CustomAttributeTypedArgumentMirror TypedValue { get { return arg; } } } }