I want to show my Silverlight 3 application\'s version number in the about box, but when I use a traditional .Net call like:
Assembly.GetExecutingAssembly().
You can use
Assembly.GetExecutingAssembly() .GetCustomAttributes(false).OfType() .Single().Version;