Jump to content

DLL in C#

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
2 replies to this topic

#1
gamiR

gamiR

    Learning Programmer

  • Members
  • PipPipPip
  • 96 posts
Can any one tell me how to create DLLs in C#?
How to edit created DLLs in project?
Can we edit any DLLs in visual studio?
Busy Penguin

#2
Ryan Marfone

Ryan Marfone

    Newbie

  • Members
  • PipPip
  • 11 posts
In visual studio you can create class libraries. The compile into dlls. In Windows development you don't "edit" dll's. You essentially need the source code to modify and rebuild the dll files. Do a search for creating C# class libraries to learn how.

#3
sindy55

sindy55

    Newbie

  • Members
  • PipPip
  • 11 posts
Thanks for the info, Ryan.