development

String.Format [duplicate]에서 중괄호 '{'이스케이프

big-blog 2020. 9. 28. 09:29
반응형

String.Format [duplicate]에서 중괄호 '{'이스케이프


String.Format 메서드를 사용할 때 리터럴 중괄호 문자를 어떻게 표시합니까?

예:

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

다음과 같은 출력을 원합니다.

public Int32 MyProperty { get; private set; }

이중 괄호를 사용 {{하거나 }}코드가 될 수 있도록를 :

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; }

참고 URL : https://stackoverflow.com/questions/3773857/escape-curly-brace-in-string-format

반응형