Beispiel #1
0
        public static bool IsAssignableFrom(ref System.Type current, ref System.Type toCompare)
        {
#if (UNITY_WINRT && !UNITY_EDITOR)
            return(Reflection.IsAssignableFrom(current, toCompare));
#else
            return(current.IsAssignableFrom(toCompare));
#endif
        }