Can you make Asp.net MVC View wireup compile time safe?
        Posted  
        
            by Maslow
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Maslow
        
        
        
        Published on 2010-04-07T20:13:10Z
        Indexed on 
            2010/04/07
            20:23 UTC
        
        
        Read the original article
        Hit count: 386
        
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?
© Stack Overflow or respective owner