Change C# "double" to "double?"
Using "as" keyword requires the type be nullable (and double is not). Changed to "double?" so developers could still perform a null check if desired.
Please register or sign in to comment
Using "as" keyword requires the type be nullable (and double is not). Changed to "double?" so developers could still perform a null check if desired.