c#2 C# 멀티스레드 Using System.Threading; 이렇게 추가해주세용~ class Program { static void Main(string[] args) { Console.Write("Thread 생성숫자 : "); int thNumber = int.Parse(Console.ReadLine()); Console.WriteLine("System : {0}개 만큼 생성되었습니다", thNumber); fakeServer fs = new fakeServer(); Thread[] tr = new Thread[thNumber]; for (int i = 0; i < tr.Length; i++) { tr[i] = new Thread(new ThreadStart(fs.Say)); tr[i].Start(); } Thread.. 2011. 10. 16. C# 정규표현식 C# 정규표현식 사용해 보자. 선언부 using System.Text.RegularExpressions; 예제) //Regex reg = new Regex(패턴); Regex reg = new Regex(@".*\r\n(?.*)\r\n"); //MatchCollection matchCol = reg.Matches(검사할문장); MatchCollection matchCol = reg.Matches(inputString); string result = string.Empty; for (int i = 0; i < matchCol.Count; i++) result += string.Format("{0},{1}\r\n", matchCol[i].Groups["key"].Value, matchCol[i].Groups.. 2011. 2. 24.