// Decompiled with JetBrains decompiler // Type: Puzzle.Collections.CollectionEventArgs // Assembly: FiestaShark, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null // MVID: 12469781-3753-4869-9C1A-117F1862B52C // Assembly location: E:\Fiesta\Emus\DragonFiesta\Tools\FiestaShark-Farbod\FiestaShark.exe using System; namespace Puzzle.Collections { public class CollectionEventArgs : EventArgs { public readonly int Index; public readonly object Item; public CollectionEventArgs() { } public CollectionEventArgs(object item, int index) { if (item == null) throw new ArgumentNullException(nameof (item)); try { this.Index = index; this.Item = item; } catch { throw; } } } }