For now obvious reasons, inserting code using an external style sheet DOES NOT work inside an RSS aggregator. Hopefully I don't have to devolve into using Font tags as Jeff Atwood does. Lets try the Live Writer plugin with the Embed StyleSheet option checked this time.
/// <summary> /// Recursively gets the innermost exception, i.e. the first exception /// that was thrown. /// </summary> /// <param name="ex">The exception to unwind.</param> /// <returns>The inner most InnerException.</returns> public static Exception GetInnerMostException(Exception ex) { Exception inner = ex; while (inner.InnerException != null) inner = inner.InnerException; return inner; }
Powered by: newtelligence dasBlog 2.1.8102.813
Disclaimer The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.
© Copyright 2010, Shawn Neal
E-mail