/*
Copyright (C) 2014-2019 de4dot@gmail.com
This file is part of dnSpy
dnSpy is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
dnSpy is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with dnSpy. If not, see .
*/
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
namespace dnSpy.Contracts.Hex.Text {
///
/// collection
///
public sealed class HexClassifiedTextCollection : IEnumerable {
readonly HexClassifiedText[] text;
///
/// Gets the number of elements in the collection
///
public int Count => text.Length;
///
/// Gets a
///
/// Index
///
public ref readonly HexClassifiedText this[int index] => ref text[index];
///
/// Constructor
///
/// Text
public HexClassifiedTextCollection(IEnumerable text) {
if (text is null)
throw new ArgumentNullException(nameof(text));
this.text = text.ToArray();
}
///
/// Constructor
///
/// Text
public HexClassifiedTextCollection(HexClassifiedText[] text) => this.text = text ?? throw new ArgumentNullException(nameof(text));
///
/// Gets the enumerator
///
///
public IEnumerator GetEnumerator() {
foreach (var e in text)
yield return e;
}
IEnumerator IEnumerable.GetEnumerator() => GetEnumerator();
}
}