+ 1
How to write text anywhere?
In c# we have for example string name="random text_1"; Then Console.WriteLine(name); #1But what if i wanted instead of making displayed as an output to be able to write this into the search bar of google? how could i do that? #2then lets take the string name and lets say it was a path and then i had a macro that when is activated would write this path and whenever i would activate the macro to increase the number so from test_1.cs to test_2 and so on Documents/test_1.cs
2 ответов
+ 1
Heyao,
About your first question:
Process.Start("chrome.exe", "http://www.sololearn.com");
This way you can start (open) process with query you need =)