(C#) StringBuilder의 AppendLine()이 작동하지 않는 경우 .NET Framework 2.0 이전 버전을 쓰는 경우 StringBuilder에서 AppendLine() 메소드가 지원이 되지 않는다. 그런 경우 다음과 같이 대체 메소드를 사용할 수 있다.(Environment.NewLine 이용) 예를 들어 AppendLine("Test"); 대신 Append("Test"); Append(Environment.NewLine); 을 사용하면 된다.(.NET 1.1 이상이면 Enviroment.NewLine을 사용할 수 있다.) 더보기 (C#) 모든 프로세스 리스트 출력하는 방법(System.Diagnostics.Process 이용) C#에서 System.Diagnostics.Process를 사용하면 프로세스 전반에 관한 컨트롤을 편리하게 할 수 있습니다. 간단하게 모든 프로세스 리스트를 출력해보고 싶다면 다음과 같이 하면 됩니다! 1 2 3 4 5 6 7 8 9 10 class Program { static void Main() { Process[] processes = Process.GetProcesses(); // 모든 프로세스 추출 Console.WriteLine("Count : {0}", processes.Length); // 전체 프로세스 개수 출력 foreach (Process process in processes) { // foreach 루프 수행 Console.WriteLine(process.Id); // 프로세스 아.. 더보기 (C#) String을 SecureString으로 쉽게 변환하는 방법 다음과 같이 간단한 형태로 String을 SecureString으로 쉽게 변환시킬 수 있습니다! SecureString secPwd = new SecureString(); String plaPwd = "abc123"; plaPwd.ToCharArray().ToList().ForEach(c => secPwd.AppendChar(c)); 더보기 이전 1 2 3 다음