Re: DI in MVC

2019-12-10 Thread Richard Carde
On Fri, 29 Nov 2019 at 11:22, David Burstin wrote: > Hi guys, > > Got a DI question: > ... > Is there a way that I can get MVC DI to resolve IHoldAllInterfaces so that > at runtime it will pass in an object that holds all of the internal > interfaces already resolved per the startup.cs file? >

Re: High-performance string reading and parsing

2019-12-10 Thread Alan Ingleby
What if you do parallel, but on batches of /Environment.ProcessorCount lines per thread? On Wed, 11 Dec 2019 at 15:32, Greg Keogh wrote: > Folks, I just went through an performance comparison exercise and I > thought a summary of the results might be of interest here. A colleague is > converting

High-performance string reading and parsing

2019-12-10 Thread Greg Keogh
Folks, I just went through an performance comparison exercise and I thought a summary of the results might be of interest here. A colleague is converting some C++ code to C# to see if it's possible to maintain the legacy high performance while enjoying the benefits of the managed world. The core co