In .NET, can you use reflection to get all non-inherited methods of a class?

前端 未结 4 704
滥情空心
滥情空心 2021-02-18 15:51

Because of this issue here, I\'m trying to write a custom JsonConverter that handles cases where you subclass a list or a collection, then add extra properties to it. As such,

4条回答
  •  庸人自扰
    2021-02-18 16:21

    MemberInfo.DeclaringType should do what you need. To get members directly defined in type X filter the members by DeclaringType == typeof(X).

提交回复
热议问题