Reflection performance

  • Thread starter Thread starter Mark
  • Start date Start date
M

Mark

Am I out of my mind if I use Reflection everytime someone logs into our web
site to get and track the current Major/Minor/Build/Revision version that
the
person is viewing our site through? This information would then be logged
to a database along with some other information about the user.

Thanks in advance.

Mark
 
Hi Mark,

IMHO it will not have a big impact in the performance, but what I don;t
understand is why to save the version info of the app. what you need this
info for?
IF you wanna log that info is better if you do it app wide, in the
Application_OnStart method, each time that you change the version of the
application it's reinitialize so you will always know when it's updated.


Cheers,
 
Good point! Thanks.

Ignacio Machin ( .NET/ C# MVP ) said:
Hi Mark,

IMHO it will not have a big impact in the performance, but what I don;t
understand is why to save the version info of the app. what you need this
info for?
IF you wanna log that info is better if you do it app wide, in the
Application_OnStart method, each time that you change the version of the
application it's reinitialize so you will always know when it's updated.


Cheers,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top