When I ran ReSharper on my code, for example: if (some condition) { Some code... } ReSharper gave me the above warning (Invert “if” statement to reduce nesting), and...
  • May 16, 2022
  • 0 Comments
string files = new string[2]; files[0] = "ThinkFarAhead.Example.Settings.Configuration_Local.xml"; files[1] = "ThinkFarAhead.Example.Settings.Configuration_Global.xml"; //Resharper complains this is an "access to modified closure" for (int i = 0; i < files.Length;...
  • May 15, 2022
  • 0 Comments
ReSharper likes to point out multiple functions per ASP.NET page that could be made static. Does it help me if I do make them static? Should I make them...
  • May 8, 2022
  • 0 Comments
I’m getting a warning from ReSharper about a call to a virtual member from my objects constructor. Why would this be something not to do? 1 18 In order...
  • April 13, 2022
  • 0 Comments