summaryrefslogtreecommitdiff
path: root/src/core/extensions/Casting.cs
blob: 03f6047d6fd47e09c7f59a4c2c42b48d899cbf26 (plain)
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;
        }
    }
}