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
The list of system types here for the IsExtensionMethod check does not include DateTime.
It also only includes string and not String, and does not perform a ToLower() operation on the parameter meaning we are enforcing methods with String foo input to be this String foo which isn't ideal.
This should be updated to:
Add DateTime to the excluded list
ToLower() the parameter type so the list can accurately check it
The text was updated successfully, but these errors were encountered:
The list of system types here for the
IsExtensionMethod
check does not includeDateTime
.It also only includes
string
and notString
, and does not perform aToLower()
operation on the parameter meaning we are enforcing methods withString foo
input to bethis String foo
which isn't ideal.This should be updated to:
DateTime
to the excluded listToLower()
the parameter type so the list can accurately check itThe text was updated successfully, but these errors were encountered: