bytecode instruction object
Inheritance: MultiByteAction
Example #1
0
        /// <summary>
        /// Read <see cref="SwfDotNet.IO.ByteCode.Actions.ActionGotoLabel">ActionGotoLabel</see> from swf.
        /// </summary>
        private ActionGotoLabel ReadActionGotoLabel(BinaryReader br)
        {
            int len = Convert.ToInt32(br.ReadUInt16());
            string label = BinaryStringRW.ReadString(br);

            ActionGotoLabel a = new ActionGotoLabel(label);
            //a.ByteSize = len+3;

            return a;
        }