private unsafe T[] Populate(string name, RuntimeType.MemberListType listType, RuntimeType.RuntimeTypeCache.CacheType cacheType) | |
{ | |
T[] listByName; | |
if (name == null || name.Length == 0 || cacheType == RuntimeType.RuntimeTypeCache.CacheType.Constructor && (int) name.FirstChar != 46 && (int) name.FirstChar != 42) | |
{ | |
listByName = this.GetListByName((char*) null, 0, (byte*) null, 0, listType, cacheType); | |
} | |
else | |
{ | |
... | |
} | |
this.Insert(ref listByName, name, listType); | |
return listByName; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment