How do you get all the reference dll name and their represent class name with namespace used in particular dll reflection in C#?
let us consider sample.dll in which reference1.dll and reference2.dll is used as reference to the sample dll through method reference1.method1 and reference2.method2
i need to list out
1)reference dll names ie.reference1.dll,reference2.dll
2)methods used in that dll names ie.reference1.method1,reference2.method2
3) Namespace used for referring that reference dll
i have tried with myassembly.GetTypes()
it does no help me out
waiting for your responses