Blame view

netcore/src/Infrastructure/NCC/Reflection/Internal/MethodParameterInfo.cs 514 Bytes
de2bd2f9   “wangming”   项目初始化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  using System.Reflection;
  
  namespace NCC.Reflection
  {
      /// <summary>
      /// 方法参数信息
      /// </summary>
      internal class MethodParameterInfo
      {
          /// <summary>
          /// 参数
          /// </summary>
          internal ParameterInfo Parameter { get; set; }
  
          /// <summary>
          /// 参数名
          /// </summary>
          internal string Name { get; set; }
  
          /// <summary>
          /// 参数值
          /// </summary>
          internal object Value { get; set; }
      }
  }