Click here to Skip to main content
15,929,686 members
Home / Discussions / C#
   

C#

 
AnswerRe: How can I export a class of C++ to C#? Pin
Heath Stewart4-Oct-04 16:50
protectorHeath Stewart4-Oct-04 16:50 
GeneralAssembly paths and assembly versions Pin
Marc Clifton4-Oct-04 15:56
mvaMarc Clifton4-Oct-04 15:56 
GeneralRe: Assembly paths and assembly versions Pin
Heath Stewart4-Oct-04 16:38
protectorHeath Stewart4-Oct-04 16:38 
GeneralRe: Assembly paths and assembly versions Pin
Marc Clifton6-Oct-04 4:20
mvaMarc Clifton6-Oct-04 4:20 
GeneralRe: Assembly paths and assembly versions Pin
Heath Stewart6-Oct-04 5:02
protectorHeath Stewart6-Oct-04 5:02 
GeneralRe: Assembly paths and assembly versions Pin
Marc Clifton6-Oct-04 5:13
mvaMarc Clifton6-Oct-04 5:13 
GeneralDll calling other dll Pin
RonBou4-Oct-04 15:56
RonBou4-Oct-04 15:56 
GeneralRe: Dll calling other dll Pin
Heath Stewart4-Oct-04 16:43
protectorHeath Stewart4-Oct-04 16:43 
DLLs don't "call" other DLLs, but they do reference them. Assemblies can reference each other, and you can even have circular references (it's very tricky, though, and requires pretty good knowledge of the DLLs - but Types can't be circular), but not in Visual Studio .NET.

Your types in other DLLs (assemblies are what they actually are in .NET) must be public in order for Types in other assemblies to use them. This is no different than when you reference assemblies from the Base Class Library (BCL), like System.Windows.Forms.Form for Windows Forms, or System.Web.UI.WebControls.Control for ASP.NET web controls.

Using VS.NET, you can add references to .NET assemblies, COM libraries, and even other projects in the same solution. Right-click on your project and select Add Reference. Use project references when possible (with multi-project solutions) to establish build dependencies.

This posting is provided "AS IS" with no warranties, and confers no rights.

Software Design Engineer
Developer Division Sustained Engineering
Microsoft

[My Articles]
GeneralRe: Dll calling other dll Pin
Alex Korchemniy5-Oct-04 18:21
Alex Korchemniy5-Oct-04 18:21 
GeneralRe: Dll calling other dll Pin
Blubbo7-Oct-04 2:55
Blubbo7-Oct-04 2:55 
Generalcurrent day of week to variable Pin
Pyro Joe4-Oct-04 15:36
Pyro Joe4-Oct-04 15:36 
GeneralRe: current day of week to variable Pin
Marc Clifton4-Oct-04 15:53
mvaMarc Clifton4-Oct-04 15:53 
GeneralRe: current day of week to variable Pin
Pyro Joe4-Oct-04 16:03
Pyro Joe4-Oct-04 16:03 
GeneralRe: current day of week to variable Pin
benjymous4-Oct-04 22:59
benjymous4-Oct-04 22:59 
GeneralAnimated Gif on my splash screen Pin
kornstyle4-Oct-04 12:08
kornstyle4-Oct-04 12:08 
GeneralRe: Animated Gif on my splash screen Pin
Heath Stewart4-Oct-04 14:39
protectorHeath Stewart4-Oct-04 14:39 
GeneralSQL server Timeout Pin
jagan794-Oct-04 11:34
jagan794-Oct-04 11:34 
GeneralRe: SQL server Timeout Pin
Heath Stewart4-Oct-04 14:43
protectorHeath Stewart4-Oct-04 14:43 
GeneralRe: SQL server Timeout Pin
Brian Nottingham4-Oct-04 17:38
Brian Nottingham4-Oct-04 17:38 
GeneralRe: SQL server Timeout Pin
Heath Stewart4-Oct-04 18:49
protectorHeath Stewart4-Oct-04 18:49 
GeneralRe: SQL server Timeout Pin
Brian Nottingham4-Oct-04 18:57
Brian Nottingham4-Oct-04 18:57 
GeneralRe: SQL server Timeout Pin
Heath Stewart4-Oct-04 19:00
protectorHeath Stewart4-Oct-04 19:00 
GeneralRe: SQL server Timeout Pin
jagan795-Oct-04 5:47
jagan795-Oct-04 5:47 
GeneralQuick Thumbnails for Large Images Pin
McClamm4-Oct-04 10:55
McClamm4-Oct-04 10:55 
GeneralRe: Quick Thumbnails for Large Images Pin
Christian Graus4-Oct-04 11:20
protectorChristian Graus4-Oct-04 11:20 

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.