Extension Methods from jlafay
- 
        TimeElapsedInspiration for this extension method was another DateTime extension that determines difference in current time and a DateTime object. That one returned a string and it is more useful for my applications to have a TimeSpan reference instead. That is what I did with this extension method. 
- 
        IsStaticDetermines if a type is static by checking if it's abstract, sealed, and has no public constructors.