Пример #1
0
 public ListModificationEventArgs(ListModification modification, int startIndex, int count) : base(startIndex, count)
 {
     Modification = modification;
 }
		/// <summary>Initializes a new instance of the <see cref="ListModificationEventArgs" /> class.</summary>
		/// <param name="modification">Modification being made to the list.</param>
		/// <param name="startIndex">Index from which the modifications start.</param>
		/// <param name="count">Number of modifications being made.</param>
		public ListModificationEventArgs(ListModification modification, int startIndex, int count)
			: base(startIndex, count)
		{
			_modification = modification;
		}