How to get the name of all the .cs files from a dll

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ivoryweb
    New Member
    • Mar 2010
    • 1

    How to get the name of all the .cs files from a dll

    I know we can get the name of all the methods using assem.GetTypes( ); But I want to get all the .cs files present in the dll
  • tlhintoq
    Recognized Expert Specialist
    • Mar 2008
    • 3532

    #2
    Once it is a dll, there aren't any .cs files.

    C# is translated down to I.L. (Intermediate Language). Same with VB.Net. That's how a DLL coded in one language can be used by any other .NET language.

    Comment

    Working...