SwfDotNet.IO.Tags.FlvBaseTagCollection.GetLastOne C# (CSharp) 메소드

GetLastOne() 공개 메소드

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

            return this[this.Count - 1];
        }