1 2 3 4 5 6 7 8 9 10
namespace core.extensions { public static class Casting { public static T downcast_to<T>(this object item) where T : class { return item as T; } } }