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

GetLastOne() public méthode

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

            return this[this.Count - 1];
        }