I would like to implement real-time application on C# which will provide price real-time with time precision 100ms or faster.
I know that Garbage Collector sometimes suspend all .NET threads for 1-2 second or more, which is depends on memory consumtion.
How to find the Performance Counter which shows 100% that GC decided to suspend all threads for some time.
For my application/service is critically important to have prices provided without delays >100ms, or it will be money loss.
Thank you for help.
RUV