Recurity.Swf.Helper.SwfCodeReader.CodeLength C# (CSharp) Method

CodeLength() public static method

public static CodeLength ( AVM1InstructionSequence inList ) : UInt32
inList AVM1InstructionSequence
return System.UInt32
        public static UInt32 CodeLength( AVM1InstructionSequence inList )
        {
            UInt32 sum = 0;

            for ( int i = 0; i < inList.Count; i++ )
            {
                sum += inList[ i ].ActionLength;
            }

            return sum;
        }