7 lines
173 B
C#
Raw Normal View History

namespace System.Reflection {
[Serializable]
partial class MethodInfo {
internal virtual int GenericParameterCount => GetGenericArguments ().Length;
}
}