> information from an assembly. Can someone provide me with an > example that can retieve The information embedded by > assemblyinfo.cs in both the executing assembly and an > assembly in the GAC or on disc?
AssemblyName asm = AssemblyName.GetAssemblyName( fullPathToAssembly ); major = asm.Version.Major; minor = asm.Version.Minor; build = asm.Version.Build; etc, etc -akshay
