How to stop Resharper from changing the spacing to my comments
My code is formated like this
param += "^" + ( rbYes.Checked ? "1" : "0" ); // Indication [2] param += "^" + VCInit.VCPatient().Handle; // Patient IEN [3] param += "^" + VCInit.VCEncounter().Handle; // Visit IEN [4]
When I use the } and Resharper formats my routine, it looks like this
+= "^" + ( rbYes.Checked ? "1" : "0" ); // Indication [2] param += "^" + VCInit.VCPatient().Handle; // Patient IEN [3] param += "^" + VCInit.VCEncounter().Handle; // Visit IEN [4]
How do I stop Resharper from doing that? I know it is Resharper because I suspended it and the comments did not get touched.
Thanks
Please sign in to leave a comment.