Posts by Alan Assis • 97 points
6 posts
-
4
votes1
answer241
viewsQ: What is the advantage of using the latest version of . NET Framework?
By default my Visual Studio selects . NET Framework 4.6.1 when starting a new project, but is there any advantage in selecting the latest version? (4.7.1)
-
0
votes2
answers73
viewsA: Use standard Form instance in another class
In order for the Hotkey class to have access to the members of the Form1 instance, I created added the following line to the Hotkey class: public Form1 f1 = null; And in the Form1 class, I did so:…
-
2
votes2
answers73
viewsQ: Use standard Form instance in another class
This is my class HotKey public class HotKey { private string nome; public HotKey(string nome) { this.nome = nome; } private void Start_KeyPressed(object sender, KeyPressedEventArgs e) {…
-
1
votes0
answers1486
viewsQ: Extract HTML from Inspect Widget
Using Htmlagilitypack, I use the following code to get the HTML of a website: var url = "teste.com"; var web = new HtmlWeb(); var doc = web.Load(url); However the data (a table) I want to extract…
-
-4
votes1
answer76
viewsQ: How to use regular expressions?
I have a string with this value: Romania","PROXY_IP":"93.118.243.19","PROXY_LAST_UPDATE Indonesia","PROXY_IP":"117.102.88.121","PROXY_LAST_UPDATE…
-
3
votes0
answers59
viewsQ: How to get data from a table on a website?
I’m developing a program that captures the proxies and ports of this site, for the program to get the proxies I used regular expression and htmlagilitypack... However, how to get the doors? Since by…
c#asked Alan Assis 97