PeNet.Structures.UNWIND_CODE.ToString C# (CSharp) Method

ToString() public method

Creates a string representation of the objects properties.
public ToString ( ) : string
return string
        public override string ToString()
        {
            var sb = new StringBuilder("UNWIND_CODE\n");
            sb.Append(Utility.PropertiesToString(this, "{0,-20}:\t{1,10:X}\n"));
            return sb.ToString();
        }