newtelligence.DasBlog.Web.Core.ValidTagCollection.ICollection C# (CSharp) 메소드

ICollection() 공개 메소드

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.
리턴 void
        void ICollection.CopyTo(Array array, int index)
        {
            tags.Values.CopyTo(array, index);
        }