CSharp/Development 썸네일형 리스트형 Visual Studio 2005 .NET Framework Source 확인 System.Text.dll 과 같은 시스템 dll 디버깅 방법을 소개해 드리도록 하겠습니다. vs 2005 debugging 방법을 이번 포스트에서 소개 해 드리고 다음번에 2008 방법을 소개해 드리도록 하겠습니다. 사용해 본 결과 vs 2005는 까다롭고 *_*;; vs 2008은 엄청나게 쉽습니다. *_*;; Google Search 결과 CodePlex에서 NetMassDownloader 라는 프로젝트로 진행되어서 있더군요 *_*;; 영어가 짧아서 자세한 건 잘 모르지만서도 *_*; 여기에서 아래와 같은 방법으로 vs 2005, 2008을 동일하게 작업 하실 수 있습니다. http://netmassdownloader.codeplex.com/ 저는 Feature Release 1.5.0.1 이놈을.. 더보기 Xml Xslt Transform with C# C# /// /// Xml, Xslt를 Transform 한 Data를 Return 한다. /// /// Xml 문서 /// Xslt 절대경로 /// Transoform string Data #region // string XmlTranseform(XmlDocument doc, string xsltPath) // public string XmlTranseform(XmlDocument doc, string xsltPath) { XslCompiledTransform xtData = new XslCompiledTransform(); xtData.Load(xsltPath); StringWriter swData = new StringWriter(); xtData.Transform(doc, null, swData).. 더보기 이전 1 2 다음