T C

- Total activity 25
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 10
-
T C created a post, AnsweredUsing Resharper without agreeing to privacy policy
I just upgraded to Resharper 2016.2. When I launched Visual Studio, Resharper asked me to agree to a privacy policy. I found the privacy policy to be unacceptable, so I rejected it. Then I discover... -
T C created a post, AnsweredBuilding before running unit tests
When I run a unit test by right-clicking on the green & brown circle in the left margin or by clicking either run button in the unit test sessions window, should I expect Resharper to build my test... -
-
-
T C created a post, "Qualifier is redundant" False Positive
In the VB.NET code below, A.B. is reported as a redundant qualifier, when it clearly is not.-TCClass A Public Shared B As ObjectEnd ClassClass BEnd ClassPublic Class C Dim D As Object = A.B.ToStr... -
-
-
T C created a post, Can Resharper help me deprecate "And" in favor of "AndAlso"?
I just found a bug in our code in which "And" was used where "AndAlso" is required. To prevent this kind of bug in the future, I would like to prohibit the use of "And" as a logical operator, and u... -
T C created a post, Resharper doesn't find all usages of a default property
I'm using Resharper with VB.Net in Visual Studio 2010.I'm trying to find all usages of a default property. Specifically, I'd like to find all usages of DataRow.Item(String). Because it is a default... -
T C created a post, "Value assigned is not used in any execution path" is incorrectly reported for a For/Next loop index
Resharper is reporting "Value assigned is not used in any execution path" for the index variable of a VB For/Next loop. For instance, it will give the warning for i in the code snippet below. Pu...