/Main/Source/Examples/CSharpClassLibrary/XML Documentation/Inline/C.cs
C# | 27 lines | 9 code | 1 blank | 17 comment | 0 complexity | 2bc723d66bae11c6a09f2faead7f081a MD5 | raw file
Possible License(s): CC-BY-SA-3.0
1/* Copyright(c) 2008 Sandcastle Styles * 2 * http://www.codeplex.com/SandcastleStyles * 3 * http://www.codeplex.com/SandcastleStyles/Project/License.aspx * 4 *****************************************************************/ 5using System; 6using System.Collections.Generic; 7using System.Text; 8 9namespace CSharpClassLibrary.XML_Documentation.Inline 10{ 11 /// <summary> 12 /// The documentation for this class provides examples of using the <c>c</c> element. 13 /// </summary> 14 /// <example> 15 /// <para> 16 /// The following example uses the <c>c</c> element in this method's XML documentation. 17 /// </para> 18 /// <para> 19 /// The <c>foreach (v in e)</c> statement is a block of code that iterates over the 20 /// elements returned by an object's <c>GetEnumerator</c> method, which may or may 21 /// not be the one defined by the <see cref="System.Collections.IEnumerable"/> interface. 22 /// </para> 23 /// </example> 24 public class C 25 { 26 } 27}