vote up 0 vote down star

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?

flag

It does seem like a strange question. What is the intended use? – Fredrik Mörk Oct 30 at 11:56
presumably for debug so he can print what method an event is occuring in? – Mark Mayo Oct 30 at 11:59

2 Answers

vote up 9 vote down check

I wouldn't recommend doing this in general but here we go:

return MethodBase.GetCurrentMethod().Name.Substring(4);

Using an obfuscator can totally screw this up, by the way.

link|flag
1  
Well, isn't that what obfuscators are for? :-) – Johannes Rössel Oct 30 at 11:59
Johannes: Probably ;) But you don't want them to make your code throw an IndexOutOfRangeException. – Mehrdad Afshari Oct 30 at 12:01
thanks :) that worked perfectly. Some further explanation on why I need this: I was given an application that uses about 50 keys from a webconfig file. And my task is to allow the application to work with any number of clients (needing to replicate these 50 keys for each new client). So, I have moved the keys into a separated file and needed to create a class that encapsulates the data access in order to be able to create an array of clients. – Sergio Oct 30 at 12:03
1  
Sergio: I'd write a simple code generator instead. – Mehrdad Afshari Oct 30 at 12:05
You don't need an obfuscator to potentially screw this up. The JIT might also do it for you by inlining. – Luke Oct 30 at 12:38
vote up 1 vote down

If you're using .NET, you can also use LINQ to identify this:

public static string GetName<T>(Func<T> expr)
{
  var il = expr.Method.GetMethodBody().GetILAsByteArray();
  return expr.Target.GetType().Module.ResolveField(BitConverter.ToInt32(il, 2)).Name; 
}

I can't claim credit for this solution - this came from here.

link|flag
dazzler ;-) +1 very interesting approach, never heard of this – Marc Wittke Oct 30 at 12:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.