newtelligence.DasBlog.Web.Core.ValidTagCollection.ICollection C# (CSharp) Method

ICollection() public method

Copies the ValidTags to the array, starting at the index.
public ICollection ( Array array, int index ) : void
array System.Array The array to copy the tags to.
index int The index to start at.
return void
        void ICollection.CopyTo(Array array, int index)
        {
            tags.Values.CopyTo(array, index);
        }