728x90 반응형 c#3 [C#] string Builder 우리는 C#에서 코딩을 할때, 문자를 조합해야할 일이 생긴다. 일반적인 사용법 using System.Collections; using System.Collections.Generic; using UnityEngine; public class CodePractice : MonoBehaviour { public string mString = "Taek"; public string bString = "blog"; // Start is called before the first frame update void Start() { Debug.Log(PracticeStringBuilder()); Debug.Log(mString + bString); } public string PracticeStringBuilder.. 2023. 1. 2. [C#] DateTime 1. 현재 날짜 및 시간 출력 DateTime.Now.ToString(); 결과 창 2. 현재 날짜 출력 DateTime.Now.ToLongDateString() 결과 창 3. 현재 시간 출력 (초 단위 포함) DateTime.Now.ToLongTimeString() 결과 창 4. 현재 날짜 0000-00-00 형태 출력 DateTime.Now.ToShortDateString() 결과 창 5. 현재 시간 출력 (초 단위 제외) DateTime.Now.ToShortTimeString() 결과 창 6. 원하는 형태로 현재 시간 출력 DateTime.Now.ToString("yyyy-MM-dd-HH-mm-ss") DateTime.Now.ToString("yyyy:MM:dd:HH:mm:ss") 결과 창 2022. 8. 22. [C#] Byte[] 바이트 배열 string 변환 byte[] byteArray = new byte[1024]; for (int i = 0; i < buffer.Length; i++) { byteArray[i] = buffer[i]; } string msg = Encoding.UTF8.GetString(byteArray); 2022. 8. 21. 이전 1 다음 728x90 반응형