When you want to put a line return, or a single or double
quote into a string. The C# processor throws an error. So you
have to use escape characters to let the processor know what
you are doing.
Writing double quote :builder = "<div id=\"dropmsg" + i + "\" class=\"dropcontent\" subject=\"" + var.contentheader + "\">"; Keywords : Escape characters, writing double quote
|