My questions is simple. After heavy googling I have learned that I can use ConcurrentDictionary in .NET 3.5 projects using Reactive Extensions and System.Threading.dll version from its install directory. First of all there is no System.Threading.dll, there is only System.Reactive.Windows.Threading in Reactive Extensions .NET 3.5 subdirectory. Adding reference to System.Reactive or System.Reactive.Windows.Threading or to any other from the mentioned .NET 3.5 doesn't give me ConcurrentDictionary class nor it gives me System.Collections.Concurrent namespace. I have downloaded older version of Reactive Extensions SDK and I have found what I have been looking for but my question is: does anybody know what happened to the ConcurrentDictionary backport in actual release of Reactive Extensions, does anybody know where it is or why it is missing. I was not able to find a reasonable answer or any answer at all.
Where is ConcurrentDictionary in Reactive Extensions .NET 3.5
2.1k Views Asked by Tobiasz At
1
There are 1 best solutions below
Related Questions in C#
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in .NET-3.5
- How to "sign" a big string to be identified later?
- What is the correct way to code event handlers for serializable model objects?
- linq multi left join to same property
- Application.Run(form) how to receive messages from the "form" c#
- out parameter assigned by passing it to another function as an out parameter
- I am getting a The type or namespace name 'listcolumns' could not be found (are you missing a using directive or an assembly reference?)
- I'm having trouble deploying an ASP.NET Web Forms application (now targeting .NET 3.5) onto a Windows Server 2003 running IIS 6
- Javascript copy to clipboard
- Using Invoke() to show Form from Threading.Time() thread
- .NET CE 3.5 WinForm Hiding main form right after Application.Run();
- Logging with NLog and runtime parameters to Database
- Why would I get a format exception when updating a boolean binding with WriteValue?
- base.dispose() causing Object Reference Not Set To An Instance Of An Object
- Data binds to the UI after the click has been completely executed in WPF
- Attempt to raise Null exception in disassembled code in Visual Studio
Related Questions in SYSTEM.REACTIVE
- Convert IEnumerable to IObservable with variable Period
- How to use .NET Rx FromEvent so that add event handler is called once and remove handler is called on demand
- How to prevent Scan from running multiple times?
- Generate numbers at random time intervals with rx
- Throwing data through narrow gate with Rx (Reactive Extensions)
- Is there something like ThrottleOrMax in rx?
- Is it the best to implement ObservableBase in this situation or is there another way?
- Is it possible to send a message not to all observers using .net Rx?
- Data service in Reactive Extension
- How do I create an Rx observable that gets an immediate value and then samples?
- Creating a hot observable and adding things to it
- Reactive Extension : 3 Consecutive occurance of a Record
- Conditional pairing of two streams - Combine If in Reactive Extensions
- Observable.Interval restarts for each subscription
- Create Observable from side-effects in Do block
Related Questions in CONCURRENTDICTIONARY
- How to improve performance of ConcurrentDictionary.Count in C#
- How do you convert a dictionary to a ConcurrentDictionary?
- ConcurrentDictionary on large numbers
- Does .Net 4.5.1 ConcurrentDictionary TryRemove() method release allocated memory?
- Is it safe to pass ConcurrentDictionary type into a function that takes IDictionary?
- add Equality Comparer class to base class for custom property classes in c#
- Creating a ConcurrentDictionary<string, ConcurrentQueue<decimal>> and keeping a specified ordering
- Where is ConcurrentDictionary in Reactive Extensions .NET 3.5
- ConcurrentDictionary and Clear()-function. Making values export threadsafe without data-loss
- ConcurrentDictionary and visibility
- Do replace operations on different ConcurrentDictionary keys share one lock?
- Safely removing list mapping from ConcurrentDictionary
- Thread safe Dictionary-like collection with upper bound
- Comparing characteristics of accessing class properties in C# via a static generic class and static class with ConcurrentDictionary
- Is it allowed to remove items from a ConcurrentDictionary while iterating it in a Foreach loop?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
We no longer ship the backport of the TPL with Rx for .NET 3.5. If you want to use the TPL and associated innovations in the field of concurrency, start using .NET 4 (or beyond). Rx itself doesn't need TPL functionality, hence there was no strong need for us to carry around the TPL.
There are too many complications with regards to supportability, maintenance, and quality associated with keeping such a backport alive. For instance, performance characteristics of the TPL on older CLR versions has never been tested much beyond the initial CTP of the TPL several years ago.