###This repo is meant to hold some of the helper functions that I use on a daily/weekly basis while developing ASP.NET MVC projects.
This solution includes but is not limited to:
- StringExtensions
```
int myInt = "123".Cast<int>();
Assert.AreEqual(123, myInt);
int myInt = "abc".Cast<int>(defaultValue: 10, throwIfException: false);
Assert.AreEqual(10, myInt);
```
- HtmlHelper.Script() - Renders a <script type="text/javascript" /> element
- HtmlHelper.StyleSheet() - Renders a <link rel="stylesheet" type="text/css" /> element
- HtmlHelper.Image() - Renders an <img /> element