How do you generate documentation from the C# file
commented properly with a command-line compiler?



How do you generate documentation from the C# file commented properly with a command-line compiler..

Answer / mohan kumar e.

By /doc switch in the commandline compiler we can generate
xml documentation.
csc ab.cs /doc:ab.xml

Is This Answer Correct ?    5 Yes 1 No

Post New Answer

More C Sharp Interview Questions

What is singleordefault c#?

0 Answers  


What is a framework in c#?

0 Answers  


In a C# class we have a SortedList member m_addinProjects we want to provide an iterator to allow the consumer of this class access to the items in the collection. Please provide an iterator method for the AnalyzeAddinsDLL class below and an example of how it would be used. namespace AnalyzeAddinsDLL { public class AllAddInProjects { private SortedList<string, AddInProject> m_addinProjects; public AllAddInProjects() { m_addinProjects = new SortedList<string, AddInProject>(); } } }

0 Answers   ABC, WinsIndia,


What is escape sequence in c#?

0 Answers  


What is lazy loading and eager loading in c#?

0 Answers  






What is a method signature c#?

0 Answers  


How can I get around scope problems in a try/catch?

0 Answers  


What are the three types of predicates?

0 Answers  


What is the difference between static and constant variables?

0 Answers   Accenture,


What are predicates in c#?

0 Answers  


Why is it efficient to use System.string under System.Text.StringBuilder ?

0 Answers   Siebel,


What are anonymous types in c#?

0 Answers  


Categories