Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In MonoTouch, how can we get the version of the bundle currently running?

My closest guess is somewhere in :

NSBundle.MainBundle.ObjectForInfoDictionary
share|improve this question

1 Answer

up vote 36 down vote accepted

Use the following code to get the version of the bundle currently running:

NSBundle.MainBundle.ObjectForInfoDictionary("CFBundleVersion").ToString();
share|improve this answer
1  
Awesome. Thank you. – NovaJoe Apr 19 '11 at 15:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.