You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
warning VSTHRD110: Observe the awaitable result of this method call by awaiting it, assigning to a variable, or passing it to another method.
Just assign the returned Task instance to _?
Tough if this background task throws an exception, the application will be killed regardless if it has registered for AppDomain.CurrentDomain.UnhandledException.
(I have not checked the code whether that task handles all exceptions.)
The text was updated successfully, but these errors were encountered:
The compiler (of the .NET SDK 6.0.402) warns about:
conemu-inside/ConEmuWinForms/ConEmuControl.cs
Line 87 in 13ecc26
warning VSTHRD110: Observe the awaitable result of this method call by awaiting it, assigning to a variable, or passing it to another method.
Just assign the returned
Task
instance to_
?Tough if this background task throws an exception, the application will be killed regardless if it has registered for
AppDomain.CurrentDomain.UnhandledException
.(I have not checked the code whether that task handles all exceptions.)
The text was updated successfully, but these errors were encountered: