vote up 0 vote down star

While refactoring some C# classes, I've run into classes that implement IDisposable.

Without thinking, I have created partial class files for each class that implements IDisposable interface.

E.g.) For Stamper.cs -> Stamper.cs + Stamper.Dispose.cs where Stamper.cs contains actual logic for stamping and Stamper.Dispose.cs that contains dispose logic

// Stamper.cs
public partial class Stamper
{
// actual logic
}

// Stamper.Dispose.cs
public partial class Stamper: IDisposable
{
// Implement IDisposable
}

When I looked at the code, Stamper.cs now looks a lot cleaner and readable (now about 52 lines instead of 100 lines where around 50 lines was simply a clean-up dispose code)

Am I going too far with this?

*EDIT: Thanks folks for your opinions - I have decided to put two files together into one. The Problem I had faced was that I was actually forgetting to update IDisposable implementation after updating actual logic.

Moreover there wasn't much problem navigating between method in the source code. The first reason seems more than a reason enough to stick with one file solution in my specific case.

flag

Please add "subjective" tag. ;) – JohannesH Feb 10 at 20:42
"subject" tag added :) – Sung Meister Feb 10 at 21:12

7 Answers

vote up 4 vote down check

It seems about as arbitrary as creating a partial class for constructor logic. Now I have to look at two files to grock that class. Partial classes are only really worth it for designer stuff...

link|flag
Letting Designer or code generation tool to deal with partial class seems right. There was no problem navigating around source. The downside of my partial class implementation was that I actually FORGOT to update IDisopsable impl. after changing actual logic Useful Link: tinyurl.com/abmypf – Sung Meister Feb 11 at 13:14
vote up 7 vote down

Yes, too far. Whats wrong with just sticking a #Region around the code and folding it so you cant see it?

link|flag
vote up 0 vote down

If your clean up procedure is heavy, it's acceptable, but not ideal.

It might be a good habit for boiler plate such as exposed events, heavy serialization methods and in your case memory management.

I prefer partial classes than outlines (#region). If you have to use partial class or code outlining to make your code readable, this is usually a sign that the code needs to be changed. Tear the class appart and only as a last resort use partial class (or region) if the code is absolutly necessary for upkeeping that class.

In your case, you could use a class that thinly wraps the unmanaged resource and expose a single Dispose. Then in your other class, use the managed object and Dispose it with no logic.

If your class is only a thin wrap, then I'd say your method is overkill since the whole point of the class is to dispose an unmanaged resource.

link|flag
Please explain how regions are a problem but partial classes aren't? Either way the class is cumbersome enough to require some extra organization. Splitting it into multiple files vs. regions in a single file strikes me more as a matter of taste. – CodeMonkey1 Feb 10 at 20:53
Regions are dependent on how your IDE is configured while files are not. For instance, I like using Consolas and it makes region icon almost invisible and impossible to click. Also, having stuff in a different file makes the 'hidden' code obvious while a region is easy to miss. – Coincoin Feb 10 at 20:57
I use Consolas 9pt and have no issues with the region collapse/expand icons being near-invisible nor difficult to click. Regions may be easy to miss, but at least they're right there--easier to scan a single file and see all implementation details, vs having to read 2 files to see the whole picture. – John Rudy Feb 10 at 21:55
Changed my answer to make it more obvious this is an opinion and not a fact. Also, made it more obvious that using partial or region are not the best solution but rather a last resort to an underlying problem. – Coincoin Feb 10 at 22:01
vote up 5 vote down

I would prefer to see the dispose logic in the same file as the resources that warrant implementing IDisposable. Whilst there's an element of subjectivity, I'd say it's too far

link|flag
vote up 2 vote down

I think your solution is unsound. Partial classes should usually only be used to separate developer code from generator code. Regions usually do a better job of adding structure to your code.

link|flag
Sorry JohannesH, I do not consider adding regions do a good job on anything usually. I consider regions to be quite annoying since I can't usually see whole source code – Sung Meister Feb 12 at 15:59
Ok... Well, actually I think you should do it the way you prefer... As long as you keep it as a consistent team practice. I wouldn't do it that way. However, in the end it's you who have to work with it every day. So if you think its better that way, just go for it. :) – JohannesH Feb 12 at 16:28
vote up 0 vote down

Kind of an odd question since it only has an impact on the developer, making it completely up to personal preference. I can only tell you what I would prefer and that would be that I would do it if a significant amount of logic was in the dispose portion.

link|flag
vote up 0 vote down

Personally I try to keep my instantiation/initialization logic and my cleanup/disposal logic side-by-side, it's a good reminder.

As for partial classes, the only time I use them is if a class is very large and can be categorized into groups of methods. Hiding designer code is great too.

link|flag

Your Answer

Get an OpenID
or

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