Follow up to my previous question regarding `out v...
# random
a
Follow up to my previous question regarding
out var
in C#: What do you think about partial classes? They allow you to spread a class declaration over several files, which are merged together on build. Do you see any good applications for this? Could you imagine it in other languages?
e
Have you reflected on what the closest equivalent in kotlin is? what do you think? 🙂
j
Actually partial class is one of the few things I like in C#. I can group the methods of a class based on different subdomain. In Kotlin I like to do it by defining extension methods in different files.