Model: Handle generic type arguments in generic type declarations

This commit is contained in:
Katy Coe
2019-11-01 16:37:36 +01:00
parent 05bcf98dd3
commit 364daf9dd8
3 changed files with 25 additions and 11 deletions

View File

@@ -12,7 +12,7 @@ namespace Il2CppInspector.Reflection {
public abstract class MemberInfo
{
// Assembly that this member is defined in. Only set when MemberType == TypeInfo
public Assembly Assembly { get; }
public Assembly Assembly { get; protected set; }
// Custom attributes for this member
public IEnumerable<CustomAttributeData> CustomAttributes => throw new NotImplementedException();