Inheritance: ValueAttribute
Exemplo n.º 1
0
 /// Constructor
 public CommandParameter(ParameterInfo pi)
 {
     _name = pi.Name;
     _paramType = pi.ParameterType;
     _paramAttribute = Attribute.GetCustomAttribute(pi, typeof(ParameterAttribute)) as ParameterAttribute;
 }
Exemplo n.º 2
0
 /// Constructor
 public CommandParameter(ParameterInfo pi)
 {
     _name           = pi.Name;
     _paramType      = pi.ParameterType;
     _paramAttribute = Attribute.GetCustomAttribute(pi, typeof(ParameterAttribute)) as ParameterAttribute;
 }