C# developers often use string.Format in handling string. string.Format the { and } is used as a special character to identify the parameters.
For example:
scrollDepth = “10”
string.Format("DOWN {0}",scrollDepth) generates a string DOWN 10.
But what if a { should be used as a value in the string. Is there a way to include { in the string?
To escape a { you can {{. So if you want to get the resultant string as “{DOWN 10}” the syntax to use is
string.Format("{{DOWN {0}}}",scrollDepth)
No comments:
Post a Comment