I have a class in the SDK for which every property I'm interested in calling. I know that the only way (I think the only way is) is to use reflection, which most people consider to be slow, etc. (Although I saw articles that illustrate how in some cases this is not as slow as originally intended).
Is there a better way than looping and calling each property in the target class?
Also, why is reflection considered so slow?
source share