Is it possible to split a big dll into small dlls by the namesapce?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • doudou
    New Member
    • Nov 2008
    • 2

    Is it possible to split a big dll into small dlls by the namesapce?

    I have a big dll which has s couple namespace like nameSpaceA, nameSpaceB and etc. Is there a way to split the big dll into small dlls by the different name space without recompiling?

    Thank you!
  • balabaster
    Recognized Expert Contributor
    • Mar 2007
    • 798

    #2
    Doubtful - You're going to need to create two DLLs and then take the code from the first and logically put each part into the two new DLLs... which will both need compiling.

    So not only will you need the base code, but you'll need to compile...

    In your application that references the original DLL, you will need to remove the reference to the original and add references to the two new ones... it too will need to be recompiled.

    Comment

    • Curtis Rutland
      Recognized Expert Specialist
      • Apr 2008
      • 3264

      #3
      I for one have never heard of a way to do this.

      Comment

      • doudou
        New Member
        • Nov 2008
        • 2

        #4
        Thank you for the answer. I wish to find this kind of tool. But seems not.
        How about using csc command , or microsoft command assmbly and disassembly command?

        Comment

        Working...