SwfDotNet.IO.Swf.Add C# (CSharp) Method

Add() public method

Adds the specified tag to the Swf tag collection. This methods is the same as swf.Tags.Add method, used only to simplify the writing process.
public Add ( BaseTag tag ) : void
tag SwfDotNet.IO.Tags.BaseTag Tag.
return void
        public void Add(BaseTag tag)
        {
            this.Tags.Add(tag);
        }