xml documentacion problem
-
How can I fullfil the xml information for a enumerated type? CODE_________________________________________________ public enum SegmentationTypes {SingleFrame = 1, FixedSize = 2, BottumUp = 3, Cumulation = 4, ShotDetection= 5, MedianIncremental = 6, Filtering = 7}; END CODE______________________________________________ When I insert the "///" I just get the summary field, and during compilin I get an error: "Missing XML comment for publicly visible type or member SegmentationTypes.SingleFrame" for every type in my enumerated type Some suggestions?
-
How can I fullfil the xml information for a enumerated type? CODE_________________________________________________ public enum SegmentationTypes {SingleFrame = 1, FixedSize = 2, BottumUp = 3, Cumulation = 4, ShotDetection= 5, MedianIncremental = 6, Filtering = 7}; END CODE______________________________________________ When I insert the "///" I just get the summary field, and during compilin I get an error: "Missing XML comment for publicly visible type or member SegmentationTypes.SingleFrame" for every type in my enumerated type Some suggestions?
Try:
/// <summary>
/// Summary for the enum here...
/// </summary>
public enum MyEnum
{
/// <summary>
/// Summary for Value1 here...
/// </summary>
Value1,
/// <summary>
/// Summary for Value2 here...
/// </summary>
Value2,
...
}
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer