I just debugged issue transferring state between front and backend. My property names get converted to camel case on front end so I needed a way to change this back to how it is on backend.
var camel = "VarA_ABC".ToCamelCase(); // varA_ABC
var pascal = camel.ToPascalCase(); // VarAAbc
Is this intentional? My property names get converted to camel case when passed to front end but I can’t see any way to convert them back. I don’t usually use underscores in property naes but I lined my names up with a third party service. I am refactoring code so I don’t need to rely on this but figured I’d report it in-case it wasn’t intentional or there was a different method I should be using which would save me some work.