dags att checka in

This commit is contained in:
2021-08-02 12:41:02 +02:00
parent 5648effc9a
commit 668659bf20
34 changed files with 1092 additions and 5 deletions

15
WebFlurl/Program.cs Normal file
View File

@ -0,0 +1,15 @@
using Flurl.Http;
using System;
using System.Threading.Tasks;
namespace WebFlurl
{
class Program
{
static async Task Main(string[] args)
{
string result = await "https://www.di.se/bors/aktier/".GetStringAsync();
Console.WriteLine(result);
}
}
}