Compare commits

...

2 Commits

Author SHA1 Message Date
Ross Healy
3fd0218db3 Remove comment, can't be made private or internal until I restructure. 2024-02-10 21:29:06 +00:00
Ross Healy
ad24dacac6 Now going to be disposed of in program.cs 2024-02-10 21:27:04 +00:00

View File

@@ -11,7 +11,6 @@ namespace lottery_co_uk_scraper.NationalLottery
try
{
string html = await client.GetStringAsync(url);
var doc = new HtmlDocument();
doc.LoadHtml(html);
@@ -37,17 +36,10 @@ namespace lottery_co_uk_scraper.NationalLottery
{
Console.WriteLine($"An error occurred: {ex.Message}");
}
finally
{
//client.Dispose();
}
}
public static class LotteryTableRow
{
// Also make this class private or internal
// ToDo: do away with this or put it somewhere more logical?
// update to internal?
public const string Match2 = "Match 2";
public const string Match3 = "Match 3";
public const string Match4 = "Match 4";