C# .NET Framework 4.7.2
So I've got a link: https://pastebin.com/raw/fZzAdRJw and I want to get the text of the third line. How do I do that?
My code:
private void ReadLine()
{
using (var wc=new System.Net.WebClient())
{
wc.DownloadString("https://pastebin.com/raw/fZzAdRJw");
}
}
I didn't provide a lot of the code because I totally don't know how to do this. Sorry for the noobiness, I'm totally bad at C#.