I\'m trying to find the usage of a property in a class where the property belongs to a base class. Here is a token example:
class Program
{
class Item
For this case is very usefull the ReSharper's SRP (Search and Replace with Pattern).
Menu Resharper->Find->Search with Pattern...
define here following pattern:
$Item$.Price
of for write usages only:
$Item$.Price = $exp$;
or for read usages only:
$exp$ = $Item$.Price
where $Item$
should be an expression placeholder, select the type "Bicycle"
and don't forget to check "Exactly this type".
The $exp$ can stay undefined