That awkward moment you discover you don't know how to escape the curly braces inside the formatter string in the string.Format() method in C#. That's right, I've been using this method for at least two years now, and I was never confronted with this situation. Well, it's fairly easy to go around the problem, just use double braces
{{ or
}} and you'll get something like the following:
String.Format("public {0} {1} {{ get; private set; }}",
prop.Type, prop.Name)
Info
No comments:
Post a Comment