There's been a lot of wishes to include nameof () operator in C#, so that you could do, for instance, nameof (Customer.Name), which will return you "Name".
I have a domain object. And I have to bind it. And I need names of properties as strings then. And I want them typesafe.
I remember, there was a workaround for .NET 3.5 which involved lambda expressions, so that you could get the effect of missing "nameof" operator, but I could not find it now. Anyone can remind me? And...for .NET 2.0...is there any damn way to do it? Thanks!
