Adds a description to the option which will be shown in the command line when -h is provided and in the config file.
MyConfig { @Desc("My config option.") int option; }
Will be serialized as:
; My config option. ; Default value: 0 ;option=0
See Implementation
Adds a description to the option which will be shown in the command line when -h is provided and in the config file.