It is easy to find all code that uses a property, however how do I find the code that just sets it?
(When I do a “find all reference” on the “set”, it just does a “find all reference” on the property itself, including code that just reads it.)
|
It is easy to find all code that uses a property, however how do I find the code that just sets it? (When I do a “find all reference” on the “set”, it just does a “find all reference” on the property itself, including code that just reads it.) |
|||
|
You can use Resharper. Also, set the setter to private (Or comment out the setter completely) and recompile. You will get errors where you're trying to set the property. |
|||||||||
|
|
Try commenting the |
|||
|
|
|
You could run a text search on |
|||
|
|
|
If you are using visual studio 2010 just rightclick on your property and select OR View-> Call hierarchy from menu item |
|||||
|
|
AFAIK, this can't be done using the standard features of Visual Studio - it doesn't do anything special for properties to check whether they are being used on the left or right side when searching, and, to be sure, there's no option to tell it to do so. To give an option without having to run extra regexes or install other software, you could just browse through the results window to let your eyes scan for left-side occurrences - maybe not the most productive but I'm not sure I see a great advantage over other suggestions. Lastly, @Kamyar's suggestion to make the properties no longer accessible does seem worth a look, but this depends on how long it takes your project to compile, it could take even longer to find'em all - I'm not sure why you'd need Resharper to do this though. |
||||
|
|
<PropertyName>:b*=~(:Po|:Sm). It was helpful when I came across this: msdn.microsoft.com/en-us/library/2k3te2cs.aspx. Enjoy! – regex Oct 12 '11 at 21:12