Partial class across projects is NOT ALLOWED

Yan Cui

I help clients go faster for less using serverless technologies.

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. If you want a one-stop shop to help you quickly level up your serverless skills, you should check out my Production-Ready Serverless workshop. Over 20 AWS Heroes & Community Builders have passed through this workshop, plus 1000+ students from the likes of AWS, LEGO, Booking, HBO and Siemens.
  2. If you want to learn how to test serverless applications without all the pain and hassle, you should check out my latest course, Testing Serverless Architectures.
  3. If you’re a manager or founder and want to help your team move faster and build better software, then check out my consulting services.
  4. If you just want to hang out, talk serverless, or ask for help, then you should join my FREE Community.

 


Leave a Comment

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