Replies: 1 comment
-
public IdleSettings IdleSettings
{
get
{
if (idleSettings is null)
idleSettings = v2Settings != null ? new IdleSettings(v2Settings.IdleSettings) : new IdleSettings(v1Task);
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
dahall
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm try to make the code compatible to C# 7.3 and I see some incompatibility of the code with "null coalescing".
I didn't find on Google the expanded version of a code like this:
TaskScheduler/TaskService/Task.cs
Line 3568 in 270ba8f
Could you help me to expand the line above to make it compatible with older C# 7.3?
Beta Was this translation helpful? Give feedback.
All reactions