Click here to Skip to main content
15,887,746 members
Home / Discussions / C#
   

C#

 
GeneralRe: how to access a class of a file A.cs from other file B.cs Pin
pramod.hegde23-Aug-12 23:04
professionalpramod.hegde23-Aug-12 23:04 
GeneralRe: how to access a class of a file A.cs from other file B.cs Pin
Pete O'Hanlon23-Aug-12 23:27
mvePete O'Hanlon23-Aug-12 23:27 
GeneralRe: how to access a class of a file A.cs from other file B.cs Pin
pramod.hegde23-Aug-12 23:51
professionalpramod.hegde23-Aug-12 23:51 
GeneralRe: how to access a class of a file A.cs from other file B.cs Pin
Pete O'Hanlon24-Aug-12 0:04
mvePete O'Hanlon24-Aug-12 0:04 
GeneralRe: how to access a class of a file A.cs from other file B.cs Pin
jamesfrj24-Aug-12 4:44
jamesfrj24-Aug-12 4:44 
AnswerRe: how to access a class of a file A.cs from other file B.cs Pin
Bernhard Hiller23-Aug-12 22:51
Bernhard Hiller23-Aug-12 22:51 
GeneralRe: how to access a class of a file A.cs from other file B.cs Pin
jamesfrj30-Aug-12 0:30
jamesfrj30-Aug-12 0:30 
AnswerRe: how to access a class of a file A.cs from other file B.cs Pin
BobJanova23-Aug-12 22:54
BobJanova23-Aug-12 22:54 
When you're compiling a C# application or library, you have to include all the files you want to be compiled into the assembly.

If you want both of these files in the same assembly:
csc *.cs /out:TestaCliente.exe

or
csc TestaCliente.cs Cliente.cs


If you want a separate .dll for the first class, you can first create that with
csc /t:library Cliente.cs

... and then reference it like
csc TestaCliente.cs /r:Cliente.dll


In general, though, it makes more sense to use an IDE to manage your files as a project. I recommend SharpDevelop.

Edit: An IDE will do exactly the same thing, but it will construct the command for you even when it gets very complex, chain builds together for multiple assemblies and so on.
GeneralRe: how to access a class of a file A.cs from other file B.cs Pin
jamesfrj30-Aug-12 0:22
jamesfrj30-Aug-12 0:22 
GeneralHow do I programmatically disable macros in Microsoft Project files using C#? Pin
Kosh201023-Aug-12 10:04
Kosh201023-Aug-12 10:04 
GeneralRe: How do I programmatically disable macros in Microsoft Project files using C#? Pin
BobJanova23-Aug-12 22:50
BobJanova23-Aug-12 22:50 
AnswerRe: How do I programmatically disable macros in Microsoft Project files using C#? Pin
Kosh201024-Aug-12 10:31
Kosh201024-Aug-12 10:31 
QuestionActive Directory Pin
mamoony23-Aug-12 7:49
mamoony23-Aug-12 7:49 
AnswerRe: Active Directory Pin
fjdiewornncalwe23-Aug-12 8:06
professionalfjdiewornncalwe23-Aug-12 8:06 
GeneralRe: Active Directory Pin
mamoony23-Aug-12 8:32
mamoony23-Aug-12 8:32 
GeneralRe: Active Directory Pin
fjdiewornncalwe23-Aug-12 8:42
professionalfjdiewornncalwe23-Aug-12 8:42 
GeneralRe: Active Directory Pin
mamoony23-Aug-12 8:46
mamoony23-Aug-12 8:46 
GeneralRe: Active Directory Pin
fjdiewornncalwe23-Aug-12 8:52
professionalfjdiewornncalwe23-Aug-12 8:52 
GeneralRe: Active Directory Pin
mamoony23-Aug-12 9:13
mamoony23-Aug-12 9:13 
GeneralRe: Active Directory Pin
mamoony23-Aug-12 8:48
mamoony23-Aug-12 8:48 
GeneralRe: Active Directory Pin
fjdiewornncalwe23-Aug-12 8:52
professionalfjdiewornncalwe23-Aug-12 8:52 
QuestionI want to Learn How to make Electronic Gadgets Pin
Varinder Raii23-Aug-12 3:24
Varinder Raii23-Aug-12 3:24 
AnswerRe: I want to Learn How to make Electronic Gadgets Pin
Wes Aday23-Aug-12 3:35
professionalWes Aday23-Aug-12 3:35 
AnswerRe: I want to Learn How to make Electronic Gadgets Pin
BobJanova23-Aug-12 3:38
BobJanova23-Aug-12 3:38 
GeneralRe: I want to Learn How to make Electronic Gadgets Pin
Wes Aday23-Aug-12 3:54
professionalWes Aday23-Aug-12 3:54 

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.