гитхаб

Решение
c++ или c#? прост видел что ты делал приложухи на C#, так что мало ли...

С#:
using System;


namespace ConsoleApp2
{
    class Program
    {
        static void Main(string[] args)
        {   
            System.Net.WebRequest reqGET = System.Net.WebRequest.Create(@"https://raw.githubusercontent.com/GovnocodedByChapo/VisualAccessories/main/update.json");
            System.Net.WebResponse resp = reqGET.GetResponse();
            System.IO.Stream stream = resp.GetResponseStream();
            System.IO.StreamReader sr = new System.IO.StreamReader(stream);
            string s = sr.ReadToEnd();
            Console.WriteLine(s);
        }
    }
}
c++

chapo

чопа сребдс // @moujeek
Модератор
8,848
11,512
c++ или c#? прост видел что ты делал приложухи на C#, так что мало ли...

С#:
using System;


namespace ConsoleApp2
{
    class Program
    {
        static void Main(string[] args)
        {   
            System.Net.WebRequest reqGET = System.Net.WebRequest.Create(@"https://raw.githubusercontent.com/GovnocodedByChapo/VisualAccessories/main/update.json");
            System.Net.WebResponse resp = reqGET.GetResponse();
            System.IO.Stream stream = resp.GetResponseStream();
            System.IO.StreamReader sr = new System.IO.StreamReader(stream);
            string s = sr.ReadToEnd();
            Console.WriteLine(s);
        }
    }
}
c++
 
Последнее редактирование:
  • Нравится
Реакции: Shepi и Mr.Mastire222