Already asked this in <#C0B8MA7FA|getting-started>...
# reflect
m
Already asked this in #getting-started but might be better off here: Hi. I just can't seem to get Kotlin reflection working. I'm looking for a way to manipulate all String properties of an object. Is this possibble with Kotlin reflection?
d
Copy code
val cls = obj::class
for (property in cls.memberProperties.filter { it.returnType == String::class }) {

}
m
Thank you very much. This pointed me in the right direction.