I want to use nameof in order to get the name of a property.
The following work:
DerivedClass EC = baseClassObj as DerivedClass;
nameof(EC.propertyX)
but this doesn't work:
nameof((baseClassObj as DerivedClass).propertyX)
with the compile error of:
Sub-expression cannot be used in an argument to nameof
BTW, also this doesn't work:
nameof(((baseClassObj)DerivedClass).propertyX)
Can someone explain this casting + nameof problem?
As far as I know, the
nameof()
works with reflection based on the expression provided innameof()
. Therefore, the engine obviously has problems to "decompile" the expression if it's not "simple expression".You might be interested in creating some extension method that will take
baseClassObj as DerivedClass
as parameter and return the result ofnameof()
.EDIT:
nameof()
is evaluated in compile time, that's the main reason :)