3
When we use curly braces in the string.Format its not working in C#?
below is my code:
string functionName="Add";
string.Format("function {0}(args) { return false; }", functionName);
Please help me!.