Skip to content

Instantly share code, notes, and snippets.

@gprasant
Created May 20, 2012 15:29
Show Gist options
  • Save gprasant/2758512 to your computer and use it in GitHub Desktop.
Save gprasant/2758512 to your computer and use it in GitHub Desktop.
public dynamic ViewBag {
get{
if (_dynamicViewDataDictionary == null) {
_dynamicViewDataDictionary = new DynamicViewDataDictionary(() => ViewData);
}
return _dynamicViewDataDictionary;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment