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

GetLastOne() public method

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

            return this[this.Count - 1];
        }