1. C# string 출력 방법 : 기본 출력
//직접
Console.WriteLine("BlockDMask1");
//변수 이용
string str2 = "BlockDMask2";
Console.WriteLine(str2);
2. C# string 출력 방법2 : Format() 메소드
//format 이용 방법1
Console.WriteLine("Example1 : {0}, {1}", "BlockDMask", 1212);
//format 이용 방법2
int num = 999;
string str1 = string.Format("Example2 : {0}, {1}, {2}", "BlockDMask", 3434, num);
3. C# string 출력 방법3 : 문자열 보간
//문자열 보간 이용 방법
int a = 10;
int b = 20;
Console.WriteLine($"string example1 : {a} + {b} = {a+b}");
cs
출처 : [C#] string format, 문자열 보간($)을 이용한 문자열 출력방법 (tistory.com)
'프로그래밍 언어 > C#' 카테고리의 다른 글
C# 배열 초기화, 다차원배열, 가변배열에 대해서 (0) | 2023.01.07 |
---|---|
C# 제네릭 형식 제약 조건 (where) (0) | 2023.01.06 |
C# 난수 생성 Random 클래스 (0) | 2022.10.24 |
C# 구조체가 IEquatable<T>를 상속해야 하는 이유 (0) | 2022.08.21 |
C# 가비지 컬렉터 (Garbage Collector / GC) (0) | 2022.08.10 |