Recurity.Swf.AVM1.ActionStoreRegister.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( " Reg:{0:d}", _registerNum );
            return sb.ToString();
        }