I want to create a string as shown in the text below :
'bookNo':'" + bookNo + "'
My code is
String KeyValuePair =
String.Format("'{0}':'\" + {1} + \"'", key,value);
But its not returning exact string as above. What can be done to achieve the same ?