Ejemplo n.º 1
0
 public ArgumentParseException(ArgumentAttribute[] arguments)
 {
     _arguments = arguments;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Helper function for retrieving the attribute of our propertyinfo
 /// </summary>
 private static ArgumentAttribute GetAttribute(PropertyInfo info)
 {
     return((ArgumentAttribute)ArgumentAttribute.GetCustomAttribute(info, typeof(ArgumentAttribute)));
 }