Partial class across projects is NOT ALLOWED

Yan Cui

I help clients go faster for less using serverless technologies.

This article is brought to you by

The real-time data platform that empowers developers to build innovative products faster and more reliably than ever before.

Learn more

Well, you learn something new everyday and today I found out that you can’t have a partial class that spans across projects in C#, i.e. if I have a partial class called MyClass in ProjectA:

   1: namespace ProjectA.Entities

   2: {

   3:     public partial class MyClass { }

   4: }

   5:     

I won’t be able to extend it by defining another partial class called MyClass in ProjectB even if I put the new partial class under the same namespace. Now, that’s a bummer.. but when you think about it it actually makes perfect sense!

If partial class across projects were to be allowed, it would represent a huge security risk because it’d allow potentially harmful code to be injected into existing binaries. Imagine if I had a partial class with private methods that I don’t want to expose:

   1: public partial class MyClass

   2: {

   3:     // public methods, etc. etc.

   4:     // ...

   5:  

   6:     // no one else should be allowed to call this method!!!

   7:     private void DoSecretHandshake()

   8:     {

   9:         ...

  10:     }

  11: }

I kept these methods private so others can call them, so then I compile, build and distribute the binaries, and all of a sudden some evil-doer is able to extend my class and do this:

   1: public partial class MyClass

   2: {

   3:     // expose the not so secret handshake

   4:     public void HackSecretHandshake()

   5:     {

   6:         DoSecretHandshake();    // mwahahahaha

   7:     }

   8: }

Now that’s no good! OK.. if someone really wants to execute the DoSecretHandshake method, they can always use reflection to do it, but at least it won’t be so easy and indeed tempting for them to try it..

Oh, and one more thing, a partial class is a compile time only piece of syntactic sugar and the whole thing is still compiled into a single type, in a single project. It does however, allow you to separate a huge class file into multiple files and hence making it easier to organise and manage.

Whenever you’re ready, here are 4 ways I can help you:

  1. Production-Ready Serverless: Join 20+ AWS Heroes & Community Builders and 1000+ other students in levelling up your serverless game. This is your one-stop shop for quickly levelling up your serverless skills.
  2. Do you want to know how to test serverless architectures with a fast dev & test loop? Check out my latest course, Testing Serverless Architectures and learn the smart way to test serverless.
  3. I help clients launch product ideas, improve their development processes and upskill their teams. If you’d like to work together, then let’s get in touch.
  4. Join my community on Discord, ask questions, and join the discussion on all things AWS and Serverless.

Leave a Comment

Your email address will not be published. Required fields are marked *