PageRenderTime 55ms CodeModel.GetById 14ms RepoModel.GetById 1ms app.codeStats 0ms

/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. *****************************************************************/
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Text;
  8. namespace CSharpClassLibrary.XML_Documentation.Inline
  9. {
  10. /// <summary>
  11. /// The documentation for this class provides examples of using the <c>c</c> element.
  12. /// </summary>
  13. /// <example>
  14. /// <para>
  15. /// The following example uses the <c>c</c> element in this method's XML documentation.
  16. /// </para>
  17. /// <para>
  18. /// The <c>foreach (v in e)</c> statement is a block of code that iterates over the
  19. /// elements returned by an object's <c>GetEnumerator</c> method, which may or may
  20. /// not be the one defined by the <see cref="System.Collections.IEnumerable"/> interface.
  21. /// </para>
  22. /// </example>
  23. public class C
  24. {
  25. }
  26. }