Click here to Skip to main content
16,005,181 members
Home / Discussions / C#
   

C#

 
AnswerRe: Custom WinForm Inheritance Pin
Martin#15-May-07 2:34
Martin#15-May-07 2:34 
QuestionHow to load class file dynamically in C# .Net Pin
jmavn15-May-07 2:24
jmavn15-May-07 2:24 
AnswerRe: How to load class file dynamically in C# .Net Pin
Giorgi Dalakishvili15-May-07 2:29
mentorGiorgi Dalakishvili15-May-07 2:29 
GeneralRe: How to load class file dynamically in C# .Net Pin
jmavn15-May-07 2:34
jmavn15-May-07 2:34 
GeneralRe: How to load class file dynamically in C# .Net Pin
Giorgi Dalakishvili15-May-07 2:44
mentorGiorgi Dalakishvili15-May-07 2:44 
AnswerRe: How to load class file dynamically in C# .Net Pin
Guffa15-May-07 3:03
Guffa15-May-07 3:03 
GeneralRe: How to load class file dynamically in C# .Net Pin
jmavn15-May-07 18:20
jmavn15-May-07 18:20 
AnswerRe: How to load class file dynamically in C# .Net Pin
Guffa15-May-07 21:48
Guffa15-May-07 21:48 
It really sounds like you are trying to reinvent the wheel... Visual Studio can create XML documentation when you compile the code. Just enable "XML Documentation" in the build options for the project.

If you want this for documentation, you can add xml comments in the code, which will be included in the xml file, from which you then can create complete documentation in several different formats usings Sandcastle. The xml files created are also used in intellisense, so when using the class you will see the comments about the members in the intellisense just as with the classes in the framework. Visual Studio even helps you create the comments; just type /// on the line before a member (''' in VB), and it will provide you with a template for the comments.

Example:

/// <summary>
/// Gets some information about something.
/// </summary>
/// <param name="index">The index of the informtion piece to get.</param>
/// <returns>Returns a string containing the specified information text.</returns>
public string GetInfo(int index) {
	return _someInfo[index];
}


---
single minded; short sighted; long gone;

GeneralRe: How to load class file dynamically in C# .Net Pin
jmavn15-May-07 18:27
jmavn15-May-07 18:27 
AnswerRe: How to load class file dynamically in C# .Net Pin
mike montagne16-May-07 6:53
mike montagne16-May-07 6:53 
Questionrepeat of gui problem in MDI Pin
barak16048715-May-07 1:36
barak16048715-May-07 1:36 
AnswerRe: repeat of gui problem in MDI Pin
Alireza Loghmani22-May-07 21:41
Alireza Loghmani22-May-07 21:41 
QuestionDisable DataGridView auto selecting 1st row Pin
Gavin Roberts15-May-07 1:22
Gavin Roberts15-May-07 1:22 
AnswerRe: Disable DataGridView auto selecting 1st row Pin
Jabeerbe15-May-07 1:39
Jabeerbe15-May-07 1:39 
GeneralRe: Disable DataGridView auto selecting 1st row Pin
Gavin Roberts15-May-07 1:43
Gavin Roberts15-May-07 1:43 
GeneralRe: Disable DataGridView auto selecting 1st row Pin
Jabeerbe15-May-07 1:52
Jabeerbe15-May-07 1:52 
GeneralRe: Disable DataGridView auto selecting 1st row Pin
Gavin Roberts15-May-07 1:56
Gavin Roberts15-May-07 1:56 
GeneralRe: Disable DataGridView auto selecting 1st row Pin
Gavin Roberts15-May-07 1:58
Gavin Roberts15-May-07 1:58 
GeneralRe: Disable DataGridView auto selecting 1st row Pin
Jabeerbe15-May-07 2:05
Jabeerbe15-May-07 2:05 
GeneralRe: Disable DataGridView auto selecting 1st row Pin
Gavin Roberts15-May-07 2:18
Gavin Roberts15-May-07 2:18 
GeneralRe: Disable DataGridView auto selecting 1st row Pin
Gavin Roberts15-May-07 2:33
Gavin Roberts15-May-07 2:33 
AnswerRe: Disable DataGridView auto selecting 1st row Pin
Jimmanuel15-May-07 2:39
Jimmanuel15-May-07 2:39 
AnswerRe: Disable DataGridView auto selecting 1st row Pin
Member 782880424-Nov-18 12:02
Member 782880424-Nov-18 12:02 
Questionhow can i find component for receive picture from scanner in C#.net Pin
hamidreza esmaeily15-May-07 0:58
hamidreza esmaeily15-May-07 0:58 
QuestionButton Event Occur when i refresh the page Pin
Jabeerbe15-May-07 0:38
Jabeerbe15-May-07 0:38 

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.