vote up 3 vote down star

How do I program a partial class in C# in multiple files and in different namespaces?

flag

2  
Anyone else find it amusing that a user named "Partial" is asking about partial classes? – lc Jul 4 at 0:58
1  
Why would you want to be able to do this? What problem have you encounter that you think such a feature would help you solve? – Jason Jul 4 at 1:00
It's really just a coincidence. I have been on stackoverflow for a couple of weeks. – Partial Jul 4 at 1:02
@Jason: I just wanted to know how I could spit my code in multiple files. I am rather new to C# (from a C++ background). – Partial Jul 4 at 1:06
It's the "different namespaces" part that I'm questioning. – Jason Jul 4 at 12:28

4 Answers

vote up 12 vote down check

You can't. From here ...

Using the partial keyword indicates that other parts of the class, struct, or interface can be defined within the namespace

Must be in the same namespace.

Per comment: Here's an article that discusses defining a namespace cross multiple assemblies. From there ...

Strictly speaking, assemblies and namespaces are orthogonal. That is, you can declare members of a single namespace across multiple assemblies, or declare multiple namespaces in a single assembly.

link|flag
Can you have the same namespace over multiple files? – Partial Jul 4 at 0:56
3  
Yes you can ... over multiple .cs files in the same assembly and over multiple assemblies as well. – JP Jul 4 at 0:57
Down-voter has a different opinion? – JP Jul 4 at 0:59
2  
Not sure about that downvote. This is correct... – lc Jul 4 at 1:01
vote up 3 vote down

You can't. A partial class means just that: A single class broken into several files. That also means that all files that this partial class consists of must have the same namespace. Otherwise it wouldn't be the same class anymore.

link|flag
Why the downvote? This is correct, especially the "Otherwise it wouldn't be the same class anymore" bit. – lc Jul 4 at 1:00
vote up 5 vote down

You cannot have a partial class in multiple namespaces. Classes of the same name in different namespaces are by definition different classes.

link|flag
vote up 4 vote down

A partial class (as any other class) needs to live in one single namespace (otherwise its another class).

To split it between different files just use the partial keyword after the access keyword:

// this bit of the class in a file
public partial class Employee
{
    public void DoWork()
    {
    }
}

//this bit in another file
public partial class Employee
{
    public void GoToLunch()
    {
    }
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.