Click here to Skip to main content
15,914,820 members
Home / Discussions / C#
   

C#

 
GeneralRe: Unable to figure out a proper subject line. Sorry. :( Pin
dashingsidds24-May-10 0:43
dashingsidds24-May-10 0:43 
GeneralRe: Unable to figure out a proper subject line. Sorry. :( Pin
Pete O'Hanlon24-May-10 0:49
mvePete O'Hanlon24-May-10 0:49 
AnswerRe: Unable to figure out a proper subject line. Sorry. :( Pin
Łukasz Nowakowski24-May-10 0:51
Łukasz Nowakowski24-May-10 0:51 
AnswerRe: Unable to figure out a proper subject line. Sorry. :( Pin
Abhinav S24-May-10 1:40
Abhinav S24-May-10 1:40 
AnswerRe: Unable to figure out a proper subject line. Sorry. :( Pin
Kunal Chowdhury «IN»24-May-10 2:38
professionalKunal Chowdhury «IN»24-May-10 2:38 
AnswerRe: Unable to figure out a proper subject line. Sorry. :( Pin
Luc Pattyn24-May-10 4:49
sitebuilderLuc Pattyn24-May-10 4:49 
GeneralRe: Unable to figure out a proper subject line. Sorry. :( Pin
dashingsidds24-May-10 18:31
dashingsidds24-May-10 18:31 
GeneralRe: Unable to figure out a proper subject line. Sorry. :( Pin
Luc Pattyn24-May-10 18:40
sitebuilderLuc Pattyn24-May-10 18:40 
in your example, the method of the middle DLL was using a type from the first DLL as a parameter, hence that type had to be available to the final EXE.

if none of the public API of DLL 2 needs types from DLL 1, then of course your EXE would not care about DLL 1 itself, as all it sees is the public stuff of DLL 2. The EXE is not interested in how DLL 2 is implemented, nor what it may need internally. That is normal when using libraries, packages, etc.

Example: when I use a WebBrowser, it relies on several DLL (I admit, those probably are unmanaged) thast belong to Internet Explorer; my app does not need to know any detail, as all the API parts of WebBrowser are regular .NET types.

So you can wrap methods; you can hide classes and types in general. But you cannot actively use classes/types without knowing them.

Smile | :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]

I only read formatted code with indentation, so please use PRE tags for code snippets.

I'm not participating in frackin' Q&A, so if you want my opinion, ask away in a real forum (or on my profile page).

GeneralRe: Unable to figure out a proper subject line. Sorry. :( Pin
dashingsidds24-May-10 18:58
dashingsidds24-May-10 18:58 
GeneralRe: Unable to figure out a proper subject line. Sorry. :( Pin
Luc Pattyn24-May-10 19:05
sitebuilderLuc Pattyn24-May-10 19:05 
GeneralRe: Unable to figure out a proper subject line. Sorry. :( Pin
dashingsidds24-May-10 19:23
dashingsidds24-May-10 19:23 
QuestionUsing Handler to Track Progress Pin
EvanSaunders23-May-10 22:16
EvanSaunders23-May-10 22:16 
AnswerRe: Using Handler to Track Progress Pin
Łukasz Nowakowski23-May-10 22:30
Łukasz Nowakowski23-May-10 22:30 
GeneralRe: Using Handler to Track Progress Pin
EvanSaunders23-May-10 22:32
EvanSaunders23-May-10 22:32 
AnswerRe: Using Handler to Track Progress Pin
Łukasz Nowakowski23-May-10 22:39
Łukasz Nowakowski23-May-10 22:39 
GeneralRe: Using Handler to Track Progress Pin
EvanSaunders23-May-10 22:57
EvanSaunders23-May-10 22:57 
GeneralRe: Using Handler to Track Progress Pin
Łukasz Nowakowski23-May-10 22:59
Łukasz Nowakowski23-May-10 22:59 
QuestionMicrosoft Surface Pin
Łukasz Nowakowski23-May-10 20:59
Łukasz Nowakowski23-May-10 20:59 
QuestionGraphs in C# - Windows application Pin
KaurGurpreet23-May-10 20:46
KaurGurpreet23-May-10 20:46 
AnswerRe: Graphs in C# - Windows application Pin
Abhinav S23-May-10 20:50
Abhinav S23-May-10 20:50 
AnswerRe: Graphs in C# - Windows application Pin
Gaurav Dudeja India24-May-10 1:04
Gaurav Dudeja India24-May-10 1:04 
AnswerRe: Graphs in C# - Windows application Pin
Ravi Bhavnani24-May-10 14:42
professionalRavi Bhavnani24-May-10 14:42 
Questiongeting error message "Attempted to read or write protected memory. This is often an indication that other memory is corrupt." for code given below its aaper after end of function Pin
MS_TJ23-May-10 20:31
MS_TJ23-May-10 20:31 
AnswerRe: geting error message "Attempted to read or write protected memory. This is often an indication that other memory is corrupt." for code given below its aaper after end of function Pin
Dave Kreskowiak24-May-10 4:30
mveDave Kreskowiak24-May-10 4:30 
AnswerRe: geting error message "Attempted to read or write protected memory. This is often an indication that other memory is corrupt." for code given below its aaper after end of function Pin
Bernhard Hiller25-May-10 3:58
Bernhard Hiller25-May-10 3:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.