Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ViIvanov/cd1c7f3143de31bd354d77b6e31bd2a5 to your computer and use it in GitHub Desktop.
Save ViIvanov/cd1c7f3143de31bd354d77b6e31bd2a5 to your computer and use it in GitHub Desktop.
/* Debugged application */
using System;
static class Program
{
static void Main(string[] args) {
Console.WriteLine(args?.Length); // Step into Specific, Console.WriteLine here
}
}
// System.Threading.Tasks.TaskCanceledException: 'A task was canceled.' at
> mscorlib.dll!System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(System.Threading.Tasks.Task task) Unknown
mscorlib.dll!System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(System.Threading.Tasks.Task task) Unknown
Microsoft.VisualStudio.Diagnostics.Common.dll!Microsoft.VisualStudio.Diagnostics.Utilities.AsyncEnumerable.SelectAsyncEnumerator<System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.Diagnostics.HubExtensions.Sdk.DiagnosticData>, System.Collections.Generic.List<Microsoft.VisualStudio.Diagnostics.HubExtensions.Sdk.DiagnosticData>>.MoveNextAsync(System.Threading.CancellationToken cancellationToken) Unknown
mscorlib.dll!System.Runtime.CompilerServices.AsyncMethodBuilderCore.MoveNextRunner.InvokeMoveNext(object stateMachine) Unknown
mscorlib.dll!System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state, bool preserveSyncCtx) Unknown
mscorlib.dll!System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state, bool preserveSyncCtx) Unknown
mscorlib.dll!System.Runtime.CompilerServices.AsyncMethodBuilderCore.MoveNextRunner.Run() Unknown
mscorlib.dll!System.Threading.Tasks.AwaitTaskContinuation.ExecuteWorkItemHelper() Unknown
mscorlib.dll!System.Threading.Tasks.AwaitTaskContinuation.System.Threading.IThreadPoolWorkItem.ExecuteWorkItem() Unknown
mscorlib.dll!System.Threading.ThreadPoolWorkQueue.Dispatch() Unknown
mscorlib.dll!System.Threading._ThreadPoolWaitCallback.PerformWaitCallback() Unknown
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment