Beispiel #1
0
        public static string GetTypeNameEntityPointer(Type type)
        {
            var postfix = "";

            if (DllInfos.IsTargetType <IEntity>(type) || type.Name == "Entity")
            {
                postfix = "*";
            }

            return(GetTypeNameWithPostFix(type, postfix));
        }
Beispiel #2
0
 public static TypeInfo[] PrepareTypeInfosRef(Type[] rawTypes)
 {
     return(DllInfos.GetTypes(BT_REF, (bt, t) => !t.IsGenericType && DllInfos.IsTargetType(bt, t)));
 }