This might seam like a strange question but....
public string MyProperty
{
get
{
return "MyProperty";
}
}
How can I replace the return statement go it returns the property name without it being hard coded?
|
|
This might seam like a strange question but....
How can I replace the return statement go it returns the property name without it being hard coded?
|
||||
|
|
|
I wouldn't recommend doing this in general but here we go:
Using an obfuscator can totally screw this up, by the way. |
||||||||||||||
|
|
|
If you're using .NET, you can also use LINQ to identify this:
I can't claim credit for this solution - this came from here. |
||
|