Recurity.Swf.AVM1.AVM1Function.ContainsInstruction C# (CSharp) Method

ContainsInstruction() public method

public ContainsInstruction ( UInt32 index ) : bool
index System.UInt32
return bool
        public bool ContainsInstruction( UInt32 index )
        {
            for ( int i = 0; i < _Instructions.Count; i++ )
            {
                if ( _Instructions[ i ] == index )
                {
                    return true;
                }
            }
            return false;
        }