Click here to Skip to main content
15,892,480 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I've code as given below. Placed cursor on SelectSPName and pressed Shift+F12 to find all its reference. But it is not shown. How to identify all it's reference?
C#
public partial class CUtilitiesConfig
{
........
.........
    public override string SelectSPName
        {
            get
            {
                return CUtilitiesConfig.ConstSelectSPName;
            }

        }
}
Posted
Updated 1-Mar-13 4:08am
v2
Comments
phil.o 1-Mar-13 7:24am    
You do not show from which class your CUtilitiesConfig inherits.

To override something (property or method), it must be present in a base class ; if your class does not inherit a specific class, then it inherits the object class, on which you only have four elements to override : ToString(), GetHashCode(), Equals() and GetType().
Raja Soosai 1-Mar-13 7:30am    
The overriding is used to identifying at run time. You cant find its used areas at compile time.
Gajendra Yadav 1-Mar-13 10:11am    
Check Namespace is added properly or let me know

1 solution

Logically, you cannot know what references there are specifically to an overridden object - since the call is always written to the base class and diverted by the system to the "newest" overload at run time there are no specific references to a derived class version.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900