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)
System.Diagnostics.Process.Start method is opening default browser on Windows 11
I have a WinForms C# app that runs fine on Windows 10, but on Windows 11, the app is triggering the opening of a default browser window. I believe it is the Start() method of System.Diagnostics.Proces...
Kevin Goyena
Votes: 0
Answers: 0
How to not propagate Activity in Task.Factory.StartNew
I have the following code:
Task task = null;
var channel = System.Threading.Channels.Channel.CreateUnbounded<string>();
using (var activity = MyActivitySource.StartActivity("Parent"))...
Sierrodc
Votes: 0
Answers: 1
Is there a way to get all children Activity objects from a parent Activity (System.Diagnostics)?
Using System.Diagnostics.Activity, and given the following C# code:
Activity parentActivity = Activity.Current;
Is there a way to get all Activity objects which have parentActivity as their Parent? O...
dposada
Votes: 0
Answers: 1
How to calculate percentile using System.Diagnostics.Metrics.Histogram
I am trying to create pxx metrics using .Net Meter API. Below is the sample code
System.Diagnostics.Metrics.MeterListener listener = new System.Diagnostics.Metrics.MeterListener
{
...
Sourabh
Votes: 0
Answers: 1