Example:
this.NOMINAL_DIAMETER & """-" & this.LINENUMBER & "-" & this.SPECIFICATION &"-" & this.INS_CODE & "-" & System.String.Format("{0:D2}", this.INS_THK*1)
Would in this case result in
12"-PL-23L0010-SS150-02-100
with """ we are escaping the ", to show up as character in resulting string.
This is fine, but are there other or standard ways to escape chars, or enter formatting.
One example would be \n to divide the string into two separate lines.
Where is can we find documentation on this?