Hey everyone, ```val test by Delegate("some value"...
# reflect
k
Hey everyone,
Copy code
val test by Delegate("some value")
is it possible to get the parameter
some value
via reflection
d
Depends on what
Delegate
is. You can use
getDelegate
to get the
Delegate("some value")
instance from the
KProperty
for
test
. If
Delegate
the exposes
"some value"
, you can get it that way.