Does system.Reflection work when I use release folder ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Usually yes – reflection is just a runtime tool; however, it really depends on what you do with your release that is different to debug; for example:
#IF DEBUG/#IF RELEASEor[Conditional(...)]sections?all of these can impact reflection.
But if all other variables are the same, then yes: reflection should be the same between debug and release.