David Roberts
- Total activity 87
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 32
-
Created Converting Tuple to Class in method return values and other places
I often will create a class that returns a small tuple, maybe (IEnumerable<Data> Rows, int TotalRows)and I find this OKBut then after a while I might want to extend it a bit, eg (IEnumerable<Data> ... -
Created Ability to combine context actions would be highly useful
when adding constructor parameters for DI, it requires 2 steps using R#, regardless of how I do it.if, in a method, I write: _someDependencyThatIsntYetInjected.Then I can use context action “Crea... -
Created Updated to latest 2024.1.2 and now not all unit tests being found
379 tests are showing in Vs2022's Test Explorerbut only 342 in R#'s Unit Test Explorerthis was working fine 1 hour ago before I upgradedI have done a full rebuild, refreshed the list, restarted VS2022 -
Created Extract method control flow - option to flip boolean return value meaning
the extract method case where control flow is affected is brilliant and incredibly useful.Except that, in some cases, such as when something positive is being done, I want it to return false if it ... -
Edited Getting lots of Uncategorized unit tests - but we do use custom Attributes!
Sometimes some (lots) unit tests get stuck as Uncategorized and rebuilding etc doesnt move them into their correct category. we do use a custom atrtribute to assign categories, eg: Snippet [TestMet... -
Created "Find Symbols External to Scope" doesn't clearly show where the reference is made from
When I use "Find Symbols External to Scope" it shows all the symbols external to the specified scope, and shows the code where they are used (as well as a line number and column number), but it doe... -
Created Any way to use Search Any with a literal string rather than have R# camel casing it
AnsweredEg. I want to search for a type name containing "Map" but R# is coming up with MasterPlan, and all sorts of variants in the Find Any/Type popup. Is there any way of searching for a literal (tempora... -
Created Type Dependencies Diagram - filter out .NET types
HiI'm using R# 9.1 on a 120 project solution. I'm trying to understand the dependency tree all the way down from a web site page to the other types and projhects in the solution.However, I keep on... -
Created Structured search help (or is it a limitation?)
HeI'm trying to search for occurances of foo.SomePropwhere foo is a identifier (or expression) of a type which derives from (or is) of type FooClassand SomeProp is a property of type PropClassThe p... -
Created Convert use of a Func<> or Action<> to a defined delegate and replace all occurances
if I have a number of places where a particular use of Func<> or Action<> is defined I eventually get to the point where i want to replace them by a delegate so the signiture is only defined in one...