/// <summary> /// Initializes a new instance of the <see cref="OutlineInfo"/> class. /// </summary> /// <param name="ol">The ol.</param> /// <param name="index">The index.</param> public OutlineInfo(OpmlOutline ol, int index) { if (ol == null) { throw new ArgumentNullException("ol"); } this.outline = ol; this.index = index; }