We use Java for backend programming and C# for app programming.
We offen exchange information with the server using json serialization framework such as NewtonJson(C#) and Gson(Java)
In the Java world, the programme guide are using camelCasing in which case the name of user should be userName
but according to the C# guide they use PascalCasing when it should be UserName
in C#.
So when using json deserialization and serialization on the app side or the server side, it will mess up.
So we are considering to change the app sides program convention to camelCase.
Or is there anyway else to solve this problem? Or what your team treats this issue?