How do you generate documentation from the C# file
commented properly with a command-line compiler?
Answer Posted / 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 View All Answers
What is the usage of Enumeration in C# Programming and is it good to use or not ?
What is a class level variable in c#?
What is a generic in c#?
What are assemblies?
What Happens In Memory When You Box And Unbox A Value-type?
In object oriented programming, how would you describe encapsulation in c#?
What operators can be used to cast from one reference type to another without the risk of throwing an exception?
What is the difference between abstract class and interface in c#?
Explain the difference between a struct and a class?
How do I unload an application domain?
Can derived classes have greater accessibility than their base types?
Which debugging tools you can use in the .NET ssSDK?
What does console readline do in c#?
what is IComparable
if we are updating a database using thread, and mean while application crashes or thread being aborted then what will happen in Database? Rollback or Database will be updated? Please explain with different scenario.