Rename Type to TypeInfo Add TypeInfo.CSharpName Implement some generic types/parameters Implement arrays Remove obsolete Il2CppType.GetTypeFromTypeIndex Implement enhanced Il2CppReflector.GetTypeFromTypeIndex (can create array and generic types on-the-fly from Il2CppType usages)
36 lines
577 B
C#
36 lines
577 B
C#
using System;
|
|
using System.Reflection;
|
|
|
|
namespace Il2CppInspector.Reflection
|
|
{
|
|
/*
|
|
public abstract class MethodBase : MemberInfo
|
|
{
|
|
// (not code attributes)
|
|
public MethodAttributes Attributes { get; set; }
|
|
|
|
// TODO: ContainsGenericParameters
|
|
}
|
|
|
|
public class ConstructorInfo : MethodBase
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
public class MethodInfo : MethodBase
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
public class PropertyInfo : MemberInfo
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
public class CustomAttributeData
|
|
{
|
|
// TODO
|
|
}
|
|
*/
|
|
}
|