/// <summary> /// Gets or sets the <see cref="System.Object"/> at the specified index. /// </summary> /// <value></value> public object this[int index] { get { return(_source.ElementAt(index)); } set { throw new NotSupportedException(); } }