I\'m looking the way to read all assemblies (.dlls) used by my app.
In a standard C# project there is \"References\" folder, when it is expanded I can read all lib
System.Reflection.Assembly []ar=AppDomain.CurrentDomain.GetAssemblies(); foreach (System.Reflection.Assembly a in ar) { Console.WriteLine("{0}", a.FullName); }