Click here to Skip to main content
16,007,885 members
Home / Discussions / C#
   

C#

 
QuestionHow to get the serial number input by the user during the installation? Pin
fishcosine30-Oct-09 7:01
fishcosine30-Oct-09 7:01 
AnswerRe: How to get the serial number input by the user during the installation? Pin
Henry Minute30-Oct-09 10:18
Henry Minute30-Oct-09 10:18 
Question3D rendering control on C# form Pin
robot_builder30-Oct-09 6:20
robot_builder30-Oct-09 6:20 
AnswerRe: 3D rendering control on C# form Pin
ARon_30-Oct-09 6:43
ARon_30-Oct-09 6:43 
QuestionHow to deploy a c# application connected to sql server express database ? Pin
Dr.DigiTaL30-Oct-09 5:58
Dr.DigiTaL30-Oct-09 5:58 
AnswerRe: How to deploy a c# application connected to sql server express database ? Pin
Not Active30-Oct-09 6:02
mentorNot Active30-Oct-09 6:02 
QuestionVirtual methods and reduntant XmlDoc Pin
dojohansen30-Oct-09 4:14
dojohansen30-Oct-09 4:14 
AnswerRe: Virtual methods and reduntant XmlDoc Pin
Gideon Engelberth30-Oct-09 5:27
Gideon Engelberth30-Oct-09 5:27 
In situations like that, I typically use the include tag like so:

<include file="xmldoc_common.xml" path="//method[@class='BaseClassName' and name='VirtualMethodName']/*" />


and the file will look like:
<xmldoc>
    <method class="BaseClassName" name="VirtualMethodName">
        <summary>The method does such and so.</summary>
        <returns>A value depending on what happened</returns>
        <exception cref="ArgumentNullException"><paramref name="paramA" />
        is null.</exception>
    </method>
</xmldoc>


This lets you share as many or as few tags as you want. If you want to have separate remarks for each, just leave the remarks out of the common and put them on each derived class that needs them. If you need some common remarks and some class-specific remarks, well I haven't really worked that out. I think I tried it once and ended up with two remarks sections in the Sandcastle output.

Only the summary, returns, exception, etc must match what is in the normal XML comments, all other tag names are whatever you want.

The external xml file goes in the project (not solution) root.
GeneralRe: Virtual methods and reduntant XmlDoc Pin
dojohansen31-Oct-09 2:31
dojohansen31-Oct-09 2:31 
QuestionC# application slow to response after period of inactivity Pin
RobScripta30-Oct-09 3:48
professionalRobScripta30-Oct-09 3:48 
AnswerRe: C# application slow to response after period of inactivity Pin
Saksida Bojan30-Oct-09 4:45
Saksida Bojan30-Oct-09 4:45 
GeneralRe: C# application slow to response after period of inactivity Pin
RobScripta30-Oct-09 5:20
professionalRobScripta30-Oct-09 5:20 
GeneralRe: C# application slow to response after period of inactivity Pin
Saksida Bojan30-Oct-09 5:40
Saksida Bojan30-Oct-09 5:40 
AnswerRe: C# application slow to response after period of inactivity Pin
Paulo Zemek30-Oct-09 7:21
Paulo Zemek30-Oct-09 7:21 
GeneralRe: C# application slow to response after period of inactivity Pin
RobScripta30-Oct-09 21:40
professionalRobScripta30-Oct-09 21:40 
GeneralRe: C# application slow to response after period of inactivity Pin
dojohansen31-Oct-09 22:40
dojohansen31-Oct-09 22:40 
GeneralRe: C# application slow to response after period of inactivity Pin
Paulo Zemek1-Nov-09 2:57
Paulo Zemek1-Nov-09 2:57 
QuestionHow to show "Press any key to Continue" Pin
yakupc30-Oct-09 3:41
yakupc30-Oct-09 3:41 
AnswerRe: How to show "Press any key to Continue" Pin
Richard MacCutchan30-Oct-09 3:55
mveRichard MacCutchan30-Oct-09 3:55 
GeneralRe: How to show "Press any key to Continue" Pin
vtchris-peterson30-Oct-09 4:14
vtchris-peterson30-Oct-09 4:14 
GeneralRe: How to show "Press any key to Continue" Pin
yakupc30-Oct-09 4:18
yakupc30-Oct-09 4:18 
AnswerRe: How to show "Press any key to Continue" PinPopular
Luc Pattyn30-Oct-09 3:56
sitebuilderLuc Pattyn30-Oct-09 3:56 
GeneralRe: How to show "Press any key to Continue" Pin
dojohansen31-Oct-09 22:42
dojohansen31-Oct-09 22:42 
AnswerRe: How to show "Press any key to Continue" Pin
vtchris-peterson30-Oct-09 4:31
vtchris-peterson30-Oct-09 4:31 
AnswerRe: How to show "Press any key to Continue" Pin
PIEBALDconsult30-Oct-09 4:40
mvePIEBALDconsult30-Oct-09 4:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.