SwfDotNet.IO.Tags.FlvBaseTagCollection.GetLastOne C# (CSharp) Method

GetLastOne() public method

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

            return this[this.Count - 1];
        }