Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. using System;
  2. using System.Reflection;
  3.  
  4. public class AssemblyName_GetAssemblyName
  5. {
  6. public static void Main()
  7. {
  8. AssemblyName myAssemblyName = AssemblyName.GetAssemblyName("MyAssembly.exe");
  9. Console.WriteLine(myAssemblyName.Version);
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement