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

C#

 
GeneralI need to create one main datatable Pin
robmays20-May-05 0:22
robmays20-May-05 0:22 
GeneralRe: I need to create one main datatable Pin
MoustafaS20-May-05 1:38
MoustafaS20-May-05 1:38 
GeneralRe: I need to create one main datatable Pin
robmays23-May-05 1:18
robmays23-May-05 1:18 
GeneralRe: I need to create one main datatable Pin
MoustafaS23-May-05 5:12
MoustafaS23-May-05 5:12 
GeneralADOCE.NET Pin
Abbas_Riazi20-May-05 0:13
professionalAbbas_Riazi20-May-05 0:13 
Generalinterface Pin
mowli19-May-05 23:29
mowli19-May-05 23:29 
GeneralRe: interface Pin
Ali Iqbal Khan19-May-05 23:57
Ali Iqbal Khan19-May-05 23:57 
GeneralRe: interface Pin
Colin Angus Mackay19-May-05 23:58
Colin Angus Mackay19-May-05 23:58 
GeneralOverloding Pin
mowli19-May-05 23:04
mowli19-May-05 23:04 
GeneralRe: Overloding Pin
Ali Iqbal Khan19-May-05 23:42
Ali Iqbal Khan19-May-05 23:42 
GeneralRe: Overloding Pin
Colin Angus Mackay20-May-05 0:06
Colin Angus Mackay20-May-05 0:06 
GeneralRe: Overloding Pin
Colin Angus Mackay20-May-05 0:04
Colin Angus Mackay20-May-05 0:04 
GeneralDataset WriteXML places rows added to dataset outside of main nodes Pin
Mikan2319-May-05 22:34
Mikan2319-May-05 22:34 
Generalnamespace. what dll refrence to add Pin
HuntTheShunt219-May-05 22:19
HuntTheShunt219-May-05 22:19 
GeneralRe: namespace. what dll refrence to add Pin
mav.northwind19-May-05 23:22
mav.northwind19-May-05 23:22 
GeneralRe: namespace. what dll refrence to add Pin
HuntTheShunt220-May-05 8:34
HuntTheShunt220-May-05 8:34 
GeneralRe: namespace. what dll refrence to add Pin
mav.northwind20-May-05 19:49
mav.northwind20-May-05 19:49 
Are you referring to assemblies containing your own types or third-party components?

If they are your own assemblies, you and you alone know which types are compiled into which assembly.

If it's a third-party component, they must tell you which dll hosts which type and what to install in order for the component to work correctly.
Then you can set your reference according to this info.

But just by giving a classes name (like in your example) the compile cannot determine where to find it and which to use. You can have a zillion valid assemblies on your harddisk each defining a class Server (debug/release builds, different versions, incidental name collisions, ...). Which one do you want to use? I guess you don't want the compiler to pick one at random, do you?

To find a .NET type in assemblies you can use Lutz Roeders Reflector[^], for example.

If you need a COM reference you can use the OLE/COM object viewer available with VS.NET.

Regards,
mav
GeneralReadOnly properties initialization Pin
Vjacheslav Murashkin19-May-05 21:56
Vjacheslav Murashkin19-May-05 21:56 
GeneralRe: ReadOnly properties initialization Pin
walcott19-May-05 22:20
walcott19-May-05 22:20 
GeneralRe: ReadOnly properties initialization Pin
Vjacheslav Murashkin20-May-05 0:10
Vjacheslav Murashkin20-May-05 0:10 
GeneralInterview Question on assemblies Pin
mowli19-May-05 21:13
mowli19-May-05 21:13 
GeneralRe: Interview Question on assemblies Pin
leppie19-May-05 21:33
leppie19-May-05 21:33 
GeneralRe: Interview Question on assemblies Pin
mowli19-May-05 22:48
mowli19-May-05 22:48 
GeneralRe: Interview Question on assemblies Pin
mav.northwind19-May-05 23:19
mav.northwind19-May-05 23:19 
Generalassemblies Pin
mowli19-May-05 21:09
mowli19-May-05 21:09 

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.