Develop/C#

    [C#] 웹 파싱 (WebClient)

    1234567891011121314151617181920212223242526272829303132333435using System.Text;using System.Net; namespace test{ class test { static void testfunc() { /* * dom : html 저장 변수 * wc.DownloadString("url") : url의 html 코드를 불러옴. * wc.Dispose(); : WebClient 메모리 해제; * wc.Encoding : 한글 깨짐 방지를 위해 Encoding.UTF8 지정 */ WebClient wc = new WebClient(); wc.Encoding = Encoding.UTF8; string dom = wc.DownloadString(..