P
Paul Speranza
Can anyone tell me the proper way to document enums so that the compiler
won't warn me when I have it generate an xml file for help?
For the following code...
/// <summary>
/// This is the enum for the employee contribution.
/// </summary>
public enum ContributionInterval {Monthly,
Quarterly,
SemiAnnually,
Annually};
....here is what the compiler tells me
C:\MyDir\MyApp\Common\Eligibility.cs(19,13): warning CS1591: Missing XML
comment for publicly visible type or member
MyCompany.Common.Eligibility.ContributionInterval.Annually'
Regards,
Paul Speranza
won't warn me when I have it generate an xml file for help?
For the following code...
/// <summary>
/// This is the enum for the employee contribution.
/// </summary>
public enum ContributionInterval {Monthly,
Quarterly,
SemiAnnually,
Annually};
....here is what the compiler tells me
C:\MyDir\MyApp\Common\Eligibility.cs(19,13): warning CS1591: Missing XML
comment for publicly visible type or member
MyCompany.Common.Eligibility.ContributionInterval.Annually'
Regards,
Paul Speranza