Tagged Questions

12
votes
6answers
8k views

.NET Asynchronous stream read/write

I have been trying to solve this "Concurrent Programming" exam exercise (in C#): Knowing that Stream class contains int Read(byte[] buffer, int offset, int size) and void Write(byte[] buffer, int ...
8
votes
3answers
977 views

What is this new Axum programming language?

I read this story on slashdot today where they announce a new parallel programming language by Microsoft. What is this new programming language about? It says Parallel Programming. But is it going to ...
4
votes
4answers
1k views

Multi-threaded application interaction with logger thread

Here I am again with questions about multi-threading and an exercise of my Concurrent Programming class. I have a multi-threaded server - implemented using .NET Asynchronous Programming Model - with ...
1
vote
2answers
453 views

List of all of concurrent data structures added in .net 4?

Is there a comprehensive list of all new concurrent data structures added in .net 4? Or perhaps the list of namespaces like System.Collections.Concurrent?
0
votes
2answers
371 views

Refactoring Dictionary to ConcurrentDictionary

I want to make my code multithreadable, therefor i need to change a Dictionary into a ConcurrentDictionary. I read about the ConcurrentDictionary, checked some example, but still I need a hand on ...