✅ Question about partial classes

So recently I got into partial classes (it's a miracle I didn't find out about this sooner I love them) and have since been using them to manage my code by splitting up classes into what they do /take care of instead of having one huge class

Now I wonder when and when not to use partial classes because personally I don't see any downsides to them, for example when writing a library that uses partial classes, doesn't that mean people can easily write an "extensions" by tapping into the same namespace / class and just adding things to them
Was this page helpful?