Computer Language/유니티
이스케이프 문자
알 수 없는 사용자
2014. 3. 31. 10:50
void Start () {
string text = @"\tHello\nWorld";
print (text);
string text2 = "\\tHello\\nWorld";
print (text2);
string text3 = "\tHello\nWorld";
print (text3);
}
}