SwfDotNet.IO.Tags.FlvBaseTagCollection.ToArray C# (CSharp) Méthode

ToArray() public méthode

Convert collection to array
public ToArray ( ) : SwfDotNet.IO.Tags.FlvBaseTag[]
Résultat SwfDotNet.IO.Tags.FlvBaseTag[]
        public FlvBaseTag[] ToArray()
        {
            FlvBaseTag[] res = null;

            if (this.Count > 0)
            {
                res = new FlvBaseTag[this.Count];
                for (int i = 0; i < this.Count; i++)
                    res[i] = this[i];
            }
            return res;
        }