diff --git a/Il2CppInspector/Reflection/MethodBase.cs b/Il2CppInspector/Reflection/MethodBase.cs index 7c4be4a..3eb00b6 100644 --- a/Il2CppInspector/Reflection/MethodBase.cs +++ b/Il2CppInspector/Reflection/MethodBase.cs @@ -76,7 +76,6 @@ namespace Il2CppInspector.Reflection GenericTypeParameters = pkg.GenericParameters.Skip((int)container.genericParameterStart).Take(container.type_argc).Select(p => new TypeInfo(this, p)).ToList(); // TODO: Constraints - // TODO: Attributes } // Set method attributes @@ -159,6 +158,7 @@ namespace Il2CppInspector.Reflection } // Get C# syntax-friendly list of parameters + // TODO: Parameter custom attributes public string GetParametersString() => string.Join(", ", DeclaredParameters.Select(p => $"{p.GetModifierString()}{p.ParameterType.CSharpName} {p.Name}")); diff --git a/Il2CppInspector/Reflection/TypeInfo.cs b/Il2CppInspector/Reflection/TypeInfo.cs index 02dcf09..0eaa753 100644 --- a/Il2CppInspector/Reflection/TypeInfo.cs +++ b/Il2CppInspector/Reflection/TypeInfo.cs @@ -202,7 +202,6 @@ namespace Il2CppInspector.Reflection { GenericTypeParameters = pkg.GenericParameters.Skip((int) container.genericParameterStart).Take(container.type_argc).Select(p => new TypeInfo(this, p)).ToList(); // TODO: Constraints - // TODO: Attributes } // Add to global type definition list