SwfDotNet.IO.ByteCode.Actions.ActionPush.ActionPush C# (CSharp) Method

ActionPush() public method

constructor.
public ActionPush ( int type, object val ) : System
type int push type
val object push value
return System
        public ActionPush(int type,object val)
            : base(ActionCode.Push)
        {
            if ((type<(int)PushType.String)||(type>(int)PushType.Constant16)) {
                throw new InvalidPushTypeException();
            }
            Type = type;
            Value = val;
        }