Why is the use of reflection in .NET recommended?

后端 未结 9 656
再見小時候
再見小時候 2020-11-30 22:25

Is it definitely a good practice to use it?

What are some possible situations in a project that need reflection?

9条回答
  •  伪装坚强ぢ
    2020-11-30 22:45

    Reflection is just a way of investigating objects during run-time. You shouldn't use it if you don't need to do just that.

提交回复
热议问题