dotnet / format

Home for the dotnet-format command

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Stop dotnet format from removing thrown exceptions

talbananaz opened this issue · comments

catch (Exception ex)
        {
            throw ex;
        } ``` 

        
        gets changed to 
        
      ```c#    catch (Exception ex)
        {
            throw;
        }```