Beef icon indicating copy to clipboard operation
Beef copied to clipboard

[Feature request]: access modifier blocks

Open EnokViking opened this issue 2 years ago • 0 comments

I've never been particularly fond of C++ but I think it does a couple of things right, such as public: and private:. It always bugged me that you have to sprinkle access modifiers on everything in C# and this has been inherited by Beef, so I propose access modifier blocks as a quality of life feature.

class MyClass
{
    //possible syntax
    private 
    {
        
    }
    
    //C++ style maybe? saves a level of indentation
    public:
}

EnokViking avatar Mar 06 '23 21:03 EnokViking