summaryrefslogtreecommitdiff
path: root/src/core/Casting.cs
blob: dbc25f09e5c8fb4cbe82cb127fee1e29c24e2006 (plain)
1
2
3
4
5
6
7
8
9
10
namespace core
{
    public static class Casting
    {
        public static T DowncastTo<T>(this object item) where T : class
        {
            return item as T;
        }
    }
}