Recurity.Swf.AVM1.ActionDefineFunction.ToString C# (CSharp) Method

ToString() public method

Converts the action to a string
public ToString ( ) : string
return string
        public override string ToString()
        {
            StringBuilder sb = new StringBuilder();
            sb.Append( this.GetType().Name );
            sb.AppendFormat( " '{0}'( ", _functionName );
            for ( int i = 0; i < _parameterName.Count; i++ )
            {
                sb.AppendFormat( "{0}{1}", _parameterName[ i ], ( ( i + 1 ) == _parameterName.Count ? "" : "," ) );
            }
            sb.AppendFormat( ") // next {0:d} bytes", _codeSize );
            return sb.ToString();
        }