Quantcast
Viewing latest article 6
Browse Latest Browse All 8

Nameof() and Infoof() using Expression Trees

A lot of times, we would like to get information about properties and fields in a class. This has lot of applications, in particular, provides a way to get rid of the magic strings spread throughout the program. Reflection used to the only method of choice to implement this feature, but with the introduction of expression trees, this becomes a lot more simple and elegant. A good introduction to the basics of expression trees can be found here.

Here is an implementation of Nameof using expression trees:

Code Snippet
  1. publicstaticclassProperty<T>
  2.     {       
  3.         publicstaticFunc<string> Nameof<TProperty>(Expression<Func<T, TProperty>> selector)
  4.         {
  5.             var expression = selector.Body asMemberExpression;
  6.             if (expression == null)
  7.             {
  8.                 thrownewArgumentException("'" + selector + "': is not a valid property or field selector");
  9.             }
  10.  
  11.             return () => expression.Member.Name;
  12.         }
  13.     }

The Nameof implementation returns a function instead of the actual name. The Infoof implementation is very similar and can be achieved by changing the return value to PropertyInfo and using the following as the return value:

Code Snippet
  1. return expression.Member asPropertyInfo;

The above implementation uses the type parameter T to define the containing class. This makes it easier to access the functions in a static context. An example usage is provided below:

Code Snippet
  1. publicclassTestTarget
  2.         {
  3.             publicstaticreadonlyFunc<string> SampleProperty = Property<TestTarget>.Nameof(me => me.Sample);
  4.             
  5.             publicstring Sample { get; privateset; }
  6.         }

The full source code along with the corresponding tests can be accessed as part of the core project here.

References :

MSDN


Viewing latest article 6
Browse Latest Browse All 8

Trending Articles