Extension Methods from James Levingston
-
ToList<T>(Func<object, T> func)
Converts an array of any type to List
passing a mapping delegate Func -
GetQueryStringValue
Gets a query string value from a System.Web.UI.UserControl HTTP Request object.
-
ToDelimitedString<T>(char delimiter, Func<T, PropertyInfo, string> func)
Map any object T to a delimited string and control how that string is formatted.
-
ImplementsInterfaces(List<Type> types)
Determines if a class object implements an interface type and returns a list of types it actually implements. If no matching type is found an empty list will be returned.