public static string GetTypeNameEntityPointer(Type type) { var postfix = ""; if (DllInfos.IsTargetType <IEntity>(type) || type.Name == "Entity") { postfix = "*"; } return(GetTypeNameWithPostFix(type, postfix)); }
public static TypeInfo[] PrepareTypeInfosRef(Type[] rawTypes) { return(DllInfos.GetTypes(BT_REF, (bt, t) => !t.IsGenericType && DllInfos.IsTargetType(bt, t))); }