views:

28

answers:

1

Let's say I need to display the appliation version which is returned by a static method: I don't know the syntax to called a static method or whether it is possible to do so. Please help.

+1  A: 

You could create a dependency property and then get the version number of your assebly with this C# code.

System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString());
Oscar184