Replace Linqpad-only methods and split into files (works except Hyperlinq)
This commit is contained in:
18
Scraper/Hyperlinq.cs
Normal file
18
Scraper/Hyperlinq.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
namespace WordpressEboobScraper2.Scraper;
|
||||
|
||||
public class Hyperlinq
|
||||
{
|
||||
private readonly Action action;
|
||||
private readonly string title;
|
||||
|
||||
public Hyperlinq(Action action, string title)
|
||||
{
|
||||
this.action = action;
|
||||
this.title = title;
|
||||
}
|
||||
|
||||
public void Dump()
|
||||
{
|
||||
Console.Out.WriteLine(this.title);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user