vote up 8 vote down star

I'm asking this because I find it quite a dangerous feature to distribute the class definition so that you can't really be sure if you know all about it. Even if I find three partial definitions, how do I know that there's not a fourth somewhere?

I'm new to C# but have spent 10 years with C++, maybe that's why I'm shaken up?

Anyway, the "partial" concept must have some great benefit, which I'm obviously missing. I would love to learn more about the philosophy behind it.

EDIT: Sorry, missed this duplicate when searching for existing posts.

flag

"how do I know that there's not a fourth somewhere?" The problem here is not partial classes, but a lack of knowledge of the project you are compiling. – mackenir Sep 18 at 9:57
stackoverflow.com/questions/612831/… – Chris S Sep 18 at 10:15
@mackenir: Try to pitch that argument to a maintenance developer assigned to a 100000+ lines of code project. – R.A Sep 18 at 13:53
1  
The "go to definition" feature in Visual Studio will give you a list of the, say, four places that a partial type is declared. – Eric Lippert Sep 18 at 14:57

5 Answers

vote up 22 vote down check

Partial classes are handy when using code generation. If you want to modify a generated class (rather than inheriting from it) then you run the risk of losing your changes when the code is regenerated. If you are able to define your extra methods etc in a separate file, the generated parts of the class can be re-created without nuking your hand-crafted code.

link|flag
2  
+1 - in fact this very feature is used by the form builder tool that comes with Visual Studio. – ConcernedOfTunbridgeWells Sep 18 at 10:02
vote up 8 vote down

The great benifit is to hide computer generated code (by the designer).
Eric Lippert has a recent blog post about the partial-keyword in general.

Another usage could be to give nested classes their own file.

link|flag
vote up 2 vote down

An other point is, that when a class implements multiple interfaces, you can split the interface implementations on diffrent files.

So every code file has only the code that belongs to the interface implementation. It´s according to separation of concerns concept.

link|flag
vote up 2 vote down

Two people editing the same class, and autogenerated designer code are the two immediate features I can see that were solved by partial classes and methods.

Having designer generated code in a separate file is a lot easier to work with compared to 1.1, where you code could often be mangled by Visual Studio (in windows forms).

Visual Studio still makes a mess of syncing the designer file, code behind and design file with ASP.NET.

link|flag
Two people editing the same class should use version control, not partial classes. – svinto Sep 18 at 10:04
Or both, and save a merge headache if it's some huge legacy class with 1000s of lines. – Chris S Sep 18 at 10:14
I'm not suggesting it's the right way to work, but that was one of the ideas behind partial classes: msdn.microsoft.com/en-us/library/… – Chris S Sep 18 at 10:20
vote up 0 vote down

If you have some kind of absurdly large class that for some reason are unable or not allowed to logically break apart into smaller classes then you can at least physically break them into multiple files in order to work with it more effectively. Essentially, you can view small chunks at a time avoiding scrolling up and down.

This might apply to legacy code that perhaps due to some arcane policy are not allowed to mess with the existing API because of numerous and entrenched dependencies.

Not necessarily the best use of partial classes, but certainly gives you an alternate option to organize code you might not be able to otherwise modify.

link|flag

Your Answer

Get an OpenID
or

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