Add Reference List...

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,
Will anybody please help me !
to get programmatically the list of REFERENCE List ( which is found in the
Project Exploer Window) used in a project.?

Thank you
Rajesh S
 
Rajesh S said:
Will anybody please help me !
to get programmatically the list of REFERENCE List ( which is found in the
Project Exploer Window) used in a project.?

Well, there's no such concept as a project in .NET, but you can get the
list of assemblies listed by a specific assembly using
Assembly.GetReferencedAssemblies.
 
Back
Top