string.Format("{Find Name='{0}'}", name)
it throws Exception at runtime saying input string was in wrong format. What is wrong in this string?
|
|
|
You need to escape the '{ characters in String.Format:
See the following for more details: http://stackoverflow.com/questions/91362/how-to-escape-brackets-in-a-format-string-in-net |
|||
|
|
|
Curly braces have a special meaning in formatting strings, and thus need to be escaped. Simply double the literal braces from
|
|||
|
|
|
try or try |
|||
|
|