Help file from XML Documentation using NDoc

Friday, May 22nd, 2009

In this article we will explore the usage of Open Source tool NDoc to create MSDN type help file from the xml documentation in a DotNet assembly. To know how we can create XML documentation visit the link XML Documentation in Visual Studio using GhostDoc Ndoc basically uses two sources to generate documentation. One is [...] Read more »

  • Delicious
  • Yahoo Buzz
  • Digg
  • DZone
  • Facebook
  • LinkedIn
  • Twitter
  • Share/Bookmark

XML Documentation in Visual Studio using GhostDoc

Friday, May 22nd, 2009

In this article we will explore how to generate the xml documentation in Visual Studio for our .NET code. Basically Every .NET assembly can contain the comments as documentation which we place after ‘///’(Triple slash) in our code. For example: If we write the following code in visual studio it gets assigned into assembly as [...] Read more »

  • Delicious
  • Yahoo Buzz
  • Digg
  • DZone
  • Facebook
  • LinkedIn
  • Twitter
  • Share/Bookmark

Creating a New Xml Document from Scratch in C#

Monday, April 20th, 2009

To create a new XmlDocument, start by creating an XmlDocument object. The XmlDocument object contains CreateElement and CreateAttribute methods that are used to add nodes to the XmlDocument object. The XmlElement contains the Attributes property, which is an XmlAttribute-Collection. The XmlAttributeCollection inherits from the XmlNamedNodeMap class, which is a collection of names with corresponding values. [...] Read more »

  • Delicious
  • Yahoo Buzz
  • Digg
  • DZone
  • Facebook
  • LinkedIn
  • Twitter
  • Share/Bookmark