[Mono-list] C#: Compiling Classes Independently - How?

2009-06-29 Thread G_Morgan
Simply put I always develop my code in C++ by compiling each file into a separate object code file and then linking them together. In C# I'm struggling to see how to do this or anything similar. I've tried using assemblies and modules but both require me to actually deliver the assembly or module

Re: [Mono-list] C#: Compiling Classes Independently - How?

2009-06-29 Thread Charlie Poole
...@lists.ximian.com [mailto:mono-list-boun...@lists.ximian.com] On Behalf Of G_Morgan Sent: Monday, June 29, 2009 11:51 AM To: mono-list@lists.ximian.com Subject: [Mono-list] C#: Compiling Classes Independently - How? Simply put I always develop my code in C++ by compiling each file

Re: [Mono-list] C#: Compiling Classes Independently - How?

2009-06-29 Thread David Rivera
-Original Message- From: mono-list-boun...@lists.ximian.com [mailto:mono-list-boun...@lists.ximian.com] On Behalf Of G_Morgan Sent: Monday, June 29, 2009 11:51 AM To: mono-list@lists.ximian.com Subject: [Mono-list] C#: Compiling Classes Independently - How? Simply put I always develop my

Re: [Mono-list] C#: Compiling Classes Independently - How?

2009-06-29 Thread G_Morgan
...@lists.ximian.com] On Behalf Of G_Morgan Sent: Monday, June 29, 2009 11:51 AM To: mono-list@lists.ximian.com Subject: [Mono-list] C#: Compiling Classes Independently - How? Simply put I always develop my code in C++ by compiling each file into a separate object code file and then linking them

Re: [Mono-list] C#: Compiling Classes Independently - How?

2009-06-29 Thread Maser, Dan
...@lists.ximian.com] On Behalf Of G_Morgan Sent: Monday, June 29, 2009 4:03 PM To: mono-list@lists.ximian.com Subject: Re: [Mono-list] C#: Compiling Classes Independently - How? So the official advice is to shut up and deal with it ;). I think I can understand why MS decided to do things this way

Re: [Mono-list] C#: Compiling Classes Independently - How?

2009-06-29 Thread Alan McGovern
Of G_Morgan Sent: Monday, June 29, 2009 11:51 AM To: mono-list@lists.ximian.com Subject: [Mono-list] C#: Compiling Classes Independently - How? Simply put I always develop my code in C++ by compiling each file into a separate object code file and then linking them together. In C# I'm

Re: [Mono-list] C#: Compiling Classes Independently - How?

2009-06-29 Thread G_Morgan
Subject: Re: [Mono-list] C#: Compiling Classes Independently - How? So the official advice is to shut up and deal with it ;). I think I can understand why MS decided to do things this way. Something along the line of 'OMG look at all those class files everywhere' wrt Java. Why don't