python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
What is the right way to abort a method that will never complete C# - Without Thread.Abort
Since the Thread.Abort method is not supported by Microsoft anymore. What is the correct way to get past an operation that is never (or within specified time) expected to complete. The code with Threa...
Shashank Chaturvedi
Votes: 0
Answers: 3
Crawling Multiple Urls at one Go using Task parallel Library
I want to Crawl data using multiple URL's and store the data in SQLite, Should I use Parallel. Invoke or parallel for each loop too crawl the URL and fetch the data. I am confused on how to execute th...
Vedant iyer
Votes: 0
Answers: 1
Add async in a non-async interfaces
I have a legacy .NET Framework application that’s been running for a decade.
There is an interface:
interface IService
{
void Run();
}
And this interface is implemented in many existing classes. T...
Vyas Rao
Votes: 0
Answers: 2
Connection problems while using Parallel.ForEach Loop
I have a foreach loop which is responsible for executing a certain set of statements. A part of that is to save an image from a URL to Azure storage. I have to do this for a large set of data. To achi...
Manan Kapoor
Votes: 0
Answers: 3