I\'m trying to learn more about the SynchronizationContext
, so I made this simple console application:
private static void Main()
{
var sc =
By default, all threads in console applications and Windows Services only have the default SynchronizationContext.
Kindly refer to the link https://msdn.microsoft.com/magazine/gg598924.aspx for more details. This has detailed information regarding SynchronizationContext
in various types of application.