How do I program a partial class in C# in multiple files and in different namespaces?
|
|
|||||||||||||||
|
|
|
You can't. From here ...
Must be in the same namespace. Per comment: Here's an article that discusses defining a namespace cross multiple assemblies. From there ...
|
||||||||||||
|
|
|
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. |
|||
|
|
|
You cannot have a partial class in multiple namespaces. Classes of the same name in different namespaces are by definition different classes. |
||
|
|
|
|
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:
|
|||
|
|
