I have made a C# application , now I want to create custom survey (actually sending data automatically to me, about - crashes , usage duration etc.) to enhance my application .
How can I do it ?
You may do this:
System.Threading.Timer
instance and set desired schedule to send the statistics. Or just send them each time user starts your application.WebClient/HttpClient
.Tutorials: