Section 32.3: 불변 참조 타입 (Immutable reference type) - string
// 문자열 literal 로부터 새로운 string 을 할당한다
string s = "hello";
// 문자 배열로부터 새로운 string 을 할당한다
char[] chars = new char[] {'h', 'e', 'l', 'l', 'o'};
string s = new string(chars, 0, chars.Length);
// 문자열의 char 포인터로부터 새로운 string 을 할당한다
string s;
unsafe {
fixed(char * charPointer = "hello") {
s = new string(charPointer);
}
}
본 문서는 C# Notes for Professionals (라이센스:CC-BY-SA) 를 한글로 번역한 문서입니다. 번역상 오류가 있을 수 있으므로 정확한 내용은 원본 문서를 참고하세요.
[출처] https://books.goalkicker.com/CSharpBook/
반응형
'번역 > C# Notes for Professionals' 카테고리의 다른 글
32.5: 값 타입 (Value type) - short, int, long (부호가 있는 16 비트, 32 비트, 64 비트 정수들) (0) | 2021.11.18 |
---|---|
32.4: 값 타입 (Value type) - char (0) | 2021.11.17 |
32.2: Boxing 된 값 타입 비교하기 (0) | 2021.11.04 |
32.1: Boxing 된 값 타입 변환하기 (0) | 2021.11.04 |
31.5: 메소드에서 ref 와 out 파라미터의 차이 이해하기 (0) | 2021.10.29 |