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

GetLastOne() public méthode

Gets the last BaseTag of the collection.
public GetLastOne ( ) : FlvBaseTag
Résultat FlvBaseTag
        public FlvBaseTag GetLastOne()
        {
            if (this.Count == 0)
                return null;

            return this[this.Count - 1];
        }