/
n-dimens
/
pascalabcnet
Обзор
Документация
Войти
/
n-dimens
/
pascalabcnet
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Debugger.Core/Src/Variables/Values/ValueEventArgs.cs
33 строки
732 B
Бондарев Иван
initial commit
14 май 2015, 22:35
14 май 2015, 22:35
e6e67c1
Код
Авторство
О чём код?
// <file> // <copyright see="prj:///doc/copyright.txt"/> // <license see="prj:///doc/license.txt"/> // <owner name="David Srbecký" email="dsrbecky@gmail.com"/> // <version>$Revision: 2185 $</version> // </file> using System; namespace Debugger { /// <summary> /// Provides data for events related to <see cref="Debugger.Value"/> class /// </summary> [Serializable] public class ValueEventArgs : ProcessEventArgs { Value val; /// <summary> The value that caused the event </summary> public Value Value { get { return val; } } /// <summary> Initializes a new instance of the class </summary> public ValueEventArgs(Value val): base(val.Process) { this.val = val; } } }