Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hi! How can I get the versionnumber of an assembly ?
try this: using System.Reflection ... string s = Assembly.GetExecutingAssembly().GetName().Version.ToString(); U can use other calls than GetExecutingAssembly if u whant other assemblies.