Add project files.

This commit is contained in:
2021-07-05 22:29:31 +02:00
parent ef61217b63
commit 5648effc9a
7 changed files with 314 additions and 0 deletions

17
CsharpCorne/Program.cs Normal file
View File

@ -0,0 +1,17 @@
using HtmlAgilityPack;
using System;
using System.Linq;
namespace CsharpCorner
{
class Program
{
static void Main(string[] args)
{
var web = new HtmlWeb();
var doc = web.Load("https://www.avanza.se/aktier/lista.html");
var headerNames = doc.DocumentNode
.SelectNodes("//a[@class='ellipsis']").ToList();
}
}
}