SwfDotNet.IO.ByteCode.Actions.BaseAction.Compile C# (CSharp) 메소드

Compile() 공개 메소드

compile action to byte code
public Compile ( BinaryWriter writer ) : void
writer System.IO.BinaryWriter /// Binary writer for writing byte code to stream ///
리턴 void
        public virtual void Compile(BinaryWriter writer)
        {
            writer.Write(Convert.ToByte(Code));
        }

Usage Example

예제 #1
0
 /// <see cref="SwfDotNet.IO.ByteCode.Actions.BaseAction.Compile"/>
 public override void Compile(BinaryWriter w)
 {
     for (int i = 0; i < actionList.Length; i++)
     {
         BaseAction action = (BaseAction)actionList[i];
         action.Compile(w);
     }
 }
All Usage Examples Of SwfDotNet.IO.ByteCode.Actions.BaseAction::Compile