public IDictionary<Type, string>? DefaultValueDescriptions { get; set; }
Public Property DefaultValueDescriptions As IDictionary(Of Type, String)
Get
Set
Dim instance As ParseOptions
Dim value As IDictionary(Of Type, String)
value = instance.DefaultValueDescriptions
instance.DefaultValueDescriptions = value
public:
property IDictionary<Type^, String^>^ DefaultValueDescriptions {
IDictionary<Type^, String^>^ get ();
void set (IDictionary<Type^, String^>^ value);
}
The value description is a short, typically one-word description that indicates the type of value that the user should supply. It is not the long description used to describe the purpose of the argument.
If an argument doesn't have the ValueDescriptionAttribute attribute applied, the value description will be determined by first checking this dictionary. If the type of the argument isn't in the dictionary, the type name is used, applying the transformation specified by the ValueDescriptionTransform property.