There is some code in Forms that does
new CancellationToken()
when an useless CancellationToken is being used. It is better to use
CancellationToken.None
static instance to avoid unnecessary instance creation. Just sayin
There is some code in Forms that does
new CancellationToken()
when an useless CancellationToken is being used. It is better to use
CancellationToken.None
static instance to avoid unnecessary instance creation. Just sayin