Beispiel #1
0
        public static FieldInfo GetField(ref System.Type type, string name)
        {
#if (UNITY_WINRT && !UNITY_EDITOR)
            return(Reflection.GetField(type, name));
#else
            return(type.GetField(name));
#endif
        }