• I am using C# language, when I use // to add comments to the code, it adds some unexpected spaces. Do you know this problem?

    Example:

    class Sample : Derived() {
        // Error! es final y no puede ser sobrescrito
        override fun function1() { }
    }

    Result:

    class Sample : Derived() {
                 // Error! es final y no puede ser sobrescrito
        override fun function1() { }
    }

    Is there a way to configure so that it doesn’t add these spaces?

    • This topic was modified 4 years, 2 months ago by arbems.
    • This topic was modified 4 years, 2 months ago by arbems.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Code Comments’ is closed to new replies.