Output: FieldAttributes.FamANDAssem is "private protected" from C# 7.2 onwards

This commit is contained in:
Katy Coe
2019-11-05 21:04:06 +01:00
parent 8528c4db9a
commit fa6e1683e5
2 changed files with 8 additions and 8 deletions

View File

@@ -133,7 +133,7 @@ namespace Il2CppInspector.Reflection
if (IsFamilyOrAssembly)
modifiers.Append("protected internal ");
if (IsFamilyAndAssembly)
modifiers.Append("[family and assembly] ");
modifiers.Append("private protected ");
if (IsAbstract)
modifiers.Append("abstract ");