[Mono-list] Separate Files

2004-08-28 Thread Eric Damron
I just started using mono, C# and monodevelop so forgive the beginner question. If I have a class with a particular nasty function, is there a way to put the source for that one function into a separate file to make the code more manageable? Thanks

Re: [Mono-list] Separate Files

2004-08-28 Thread Marcus
With the original C# standard, no, you can't, but C# 2.0 supports dividing the class into several files at including the keyword partial in the class declarations. On Saturday 28 August 2004 9:16 pm, Eric Damron wrote: I just started using mono, C# and monodevelop so forgive the beginner

Re: [Mono-list] Separate Files

2004-08-28 Thread Cory Nelson
You are able to split classes into multiple files with C# 2.0 but not anything prior. I'm not sure how well Mono's C# 2.0 support is but it can't hurt to try. On Sat, 28 Aug 2004 19:16:20 -0700, Eric Damron [EMAIL PROTECTED] wrote: I just started using mono, C# and monodevelop so forgive the