Dim text As String
Dim reader As New StreamReader(파일경로)
text = reader.ReadToEnd()
요렇게 하면 text string에 쓰레기 특문으로 들어감
어떻게 해야 string으로 변환할 수 있음?
구글링 열심히 해봐도 딱 저 상황에 대한게 안 나옴..
Dim text As String
Dim reader As New StreamReader(파일경로)
text = reader.ReadToEnd()
요렇게 하면 text string에 쓰레기 특문으로 들어감
어떻게 해야 string으로 변환할 수 있음?
구글링 열심히 해봐도 딱 저 상황에 대한게 안 나옴..
그냥 while 로 reader.peak = -1 깨지게하고 readline
이번에도 자체해결.. 유니코드가 아니라 System.Text.Encoding.GetEncoding(949) 을 써야되는구나..