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
Hi everyone, I thought it would be a nice feature to be able to specify a name resolver to allow a different naming convention to be used from python.
Right now you need to access methods / properties using whatever casing you use from .NET (so pascal-case in most cases), but from python most seem to use lower-case / camel-case names.
I altered ClassManager.GetClassInfo calls to MethodInfo.Name and lower-cased them, and that seemed to work fine for a quick test, but I don't know enough about the internals of this project to know what other issues this could cause.