Posts by Marcus André • 140 points
6 posts
-
0
votes2
answers233
viewsA: Get data from a website to use in C#
In the html code of the site note that you have <app-root></app-root> and it is precisely where the general content of the site is. It seems that the site page is generated through…
-
1
votes1
answer167
viewsQ: How to get the "Base Address" of the main module of another process
Hello, I made a software that Analyzes the dump of a certain Engine process to extract the XOR key from the game automatically because it has a dynamic 16 bytes XOR changing from compilation to…
c#asked Marcus André 140 -
4
votes2
answers358
viewsQ: Keep variable in memory until system reboot
There is a way to keep a variable in the memory of the machine until it restarts? My application made a change in the system and sent the message to the user to restart the machine, to prevent any…
-
0
votes1
answer94
viewsA: File installation/copy system
how about creating a new Thread for this operation? new System.Threading.Thread((enum) => { //Converta a enum para o objeto de sua preferencia... var Enum = (var)enum; while(Enum.MoveNext()){…
-
2
votes1
answer572
viewsA: How to take the path of the subfolder that was "SELECTED " in the listbox by the user and save the file inside
I find it difficult for anyone to formulate this here for you, I did not find the question very clear and it was very specific to the point where it really seems that you are asking someone for the…
-
5
votes2
answers4066
viewsA: How to know the number of lines a large file has in C#?
More manually, you could also use this algorithm (also working with System.IO)... In Stream Peek returns the next character, without advancing the Stream pointer... and if there are no more…
c#answered Marcus André 140