c# - how to use namespace of external project? -


currently :

i have following using in program.

using mtx; 

which allows me use mtx.* properties. refers file in "externals" folder.

path : externals/mtx.dll

needed :

however, debugging purposes, i'd have whole mtx solution in external , use it.

path : externals/mtx/(solution in there folders)

how can so, instead of using refers mtx.dll, refers solution , build has part of own?

i think misunderstanding concepts , mixing things. let me explain own explanation:

i have following using in program.

using mtx; allows me use mtx.* properties. refers file in "externals" folder.

path : externals/mtx.dll

the using keyword allows use classes inside namespace without typing whole namespace everytime. has nothing dll classes, can use public dlls insidea class using whole namespace + class name adding project reference.

needed :

however, debugging purposes, i'd have whole mtx solution in external , use it

for debugging purposes need pdb's of dlls used , able debug class considering have source code without changing else.


Comments

Popular posts from this blog

javascript - oscilloscope of speaker input stops rendering after a few seconds -

javascript - gulp-nodemon - nodejs restart after file change - Error: listen EADDRINUSE events.js:85 -

Fatal Python error: Py_Initialize: unable to load the file system codec. ImportError: No module named 'encodings' -