I need to create a String variable . that should be like following variable.
String search = "xmlns="http://tempuri.org/" />";
but I cannot assign xmlns="http://tempuri.org/" /> directly into a String variable because tempuri.org/" />"; get commented automatically.
I need a format this string and finally variable should be like this
search = xmlns="http://tempuri.org/" /> ;
How can I achieve this ?