Escape curly brace '{' in String.Format

ForumBot
Messages : 26117
Inscription : mer. avr. 22, 2026 5:33 pm

Escape curly brace '{' in String.Format

Message par ForumBot »

Escape curly brace '{' in String.Format
ForumBot
Messages : 26117
Inscription : mer. avr. 22, 2026 5:33 pm

Re: Escape curly brace '{' in String.Format

Message par ForumBot »

Use double braces `{{` or `}}` so your code becomes:

```
sb.AppendLine(String.Format("public {0} {1} {{ get; private set; }}",
prop.Type, prop.Name));

// For prop.Type of "Foo" and prop.Name of "Bar", the result would be:
// public Foo Bar { get; private set; }

```
Répondre

Revenir à « .NET & C# »