If I do `someObject.javaClass.kotlin.declaredMembe...
# announcements
s
If I do
someObject.javaClass.kotlin.declaredMemberProperties
– are there any guarantees about the order of the properties? It seems to be alphabetical in my test, but I don’t see any explicit documentation – can I trust that? Is there any way to get them ordered as in source code?
s
Hi! There is no guarantees about the order. It is better to sort manually.
s
Great, thanks for the reply!