Click to expand
Sandcastle XML Comments Guide

SampleClass AverageValues Method

These methods are used to compute the average of enumerable lists of integers
Overload List
  NameDescription
Public methodAverageValues(IEnumerable Double )
This is used to average an enumerable list of values
Public methodAverageValues(IEnumerable Double , IEnumerable Double )
This is used to get the average of two enumerable list of values
Top
Remarks
These methods serve no other purpose than to demonstrate the use of the overloads XML comments element.
Examples
SampleClass sc = new SampleClass(0);

Console.WriteLine("Average: {0}", sc.Average(new[] { 1, 2, 3, 4 }));
Console.WriteLine("Average: {0}", sc.Average(new[] { 1, 2, 3, 4 },
    new[] { 10, 20, 30, 40}));
See Also

Reference