Tagged Questions

6
votes
1answer
101 views

Can you make Asp.net MVC View wireup compile time safe?

Take the standard return statement for a controller: return View("Index"); is there a way to make this thing compile time safe? using static reflection or some other trick?
3
votes
2answers
180 views

What are the use cases for this static reflection code?

This is Oliver Hanappi's static reflection code he posted on stackoverflow private static string GetMemberName(Expression expression) { switch (expression.NodeType) { ...
2
votes
3answers
736 views

On-the-fly fields from Static Reflection?

I've been studying up on static reflection with LINQ expressions - very cool! One thought I had - is it possible for one class to 'generate' fields on one class based on static reflection done on ...