반응형 프로그래밍/C#2 간단한 json reader 만들기 웹에 있는 json file을 가져와 읽어보는 간단한 code json 위치: github.com/microsoft/vscode-cpptools/blob/main/Extension/package.json microsoft/vscode-cpptools Official repository for the Microsoft C/C++ extension for VS Code. - microsoft/vscode-cpptools github.com 순수 json 위치: raw.githubusercontent.com/microsoft/vscode-cpptools/main/Extension/package.json code using System; using System.Collections.Generic; using S.. 2021. 3. 14. 간단한 XML reader 간단히 web의 xml 문서를 읽어서 필요한 정보를 찾는 방법 code는 xml 문서의 tag에 있는 버전 정보만 읽어오도록 함 xml source: github.com/microsoft/vscode-cpptools/releases.atom code using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml; namespace ConsoleApp1 { class Program { static void Main(string[] args) { string url = "https://github.com/microsoft/vscode-.. 2021. 3. 14. 이전 1 다음 반응형