Reputation: 67
For example I have dll that has 5 mb size and contains 5 classes. I reference the dll to my project and I only use 1 class from that dll. so when I release the project, is the dll only wrap 1 class or 5 classes? Thanks. Sorry for my bad English.
Upvotes: 0
Views: 63
Reputation: 349
As always, an external library is being "wrapped" completely.
If you would only take a part of the library, you can miss some key features required by the internal workings of the one class you use.
With regards, John
Upvotes: 1