VB Byval I don't need it

vb.net, visual-studio

Solution

Turn off pretty formatting at Tools/Options/Text Editor/Basic/VB Specific/Pretty Listing (reformatting) of code.

Problem

I don't need this declaration because it only makes my code big and unreadable. Is there a way to make Visual Studio (VS) not add it automatically. Every time I remove it, it is added back by VS. ``` Function DoStuff(Tom As String) ``` NOT ``` Function DoStuff(ByVal Tom As String) ```

Original source