NDoc .NET 2.0
Tech-Archive recommends: Repair Windows Errors & Optimize Windows Performance
Guten Abend,
ich habe jetzt die gepatchte Version von NDoc für .NET 2.0
installiert. Diese funktioniert sehr gut mit .NET 2.0 Assemblies!
Aber: Mir fehlt bei allen Klassen, Methoden, Eigenschaften usw. der
Rückgabewert!
Hilfe sieht so aus:
Missing <summary> documentation for P:DynGUI.TextBoxDyn.ReadOnly
public ReadOnly {get; set;}
Remarks
Missing <remarks> documentation for P:DynGUI.TextBoxDyn.ReadOnly
See Also
TextBoxDyn Class | DynGUI Namespace
Quelltext sieht so aus:
public bool ReadOnly
{
set {
if (value == true)
this.textBox1.BackColor = SystemColors.Control;
else
this.textBox1.BackColor = this.RequiredColor;
this.textBox1.ReadOnly = value;
}
get { return this.textBox1.ReadOnly; }
}
Also, meines Erachtens nichts dramatisches.
Diese fehlenden Rückgabwerte ziehen sich wie ein roter Faden durch die
gesamte Dokumentation
Weiß jemand einen Rat?
Bis dahin,
Christoph Neyen
.
Relevant Pages
- Re: ANNOUNCE: eTcl for Windows Mobile 2003 (aka PocketPC) binaries available.
... describes what commands are available, and what they do, in addition to standard Tcl/Tk. ... As mentionned in previous post, we still need to write much of the documentation, to package and make available our own sources, and site need to be deeply updated. ... the console window is full-screen, so when the virtual keyboard is up, I can't see what goes on in the lower third of the screen. ... More generally, code still need some fixes, and yes, you are right, documentation is really missing. ... (comp.lang.tcl) - Re: Opening a MS Word document through a button click
... Dim aDoc As Word.Document = WordApp.Documents.Open(fileName, ... The second reply indicated that I don't need to handle "missing" parameters. ... documentation which is in the MS Word format. ... The next thing that doesn't quite work as expected is the open file ... (microsoft.public.dotnet.languages.vb) - Re: Turn off highlighting of editable regions when a document is p
... Perhaps I was too hasty in my criticism of the Word API though I do think ... the documentation available is rather poor and it is rather difficult to find ... > The functionality wasn't missing after all... ... >> Thanks Klaus. ... (microsoft.public.word.vba.general) - Re: Opening a MS Word document through a button click
... The second reply indicated that I don't need to handle "missing" parameters. ... documentation which is in the MS Word format. ... that be when it is declared as Dim readOnly as Object = False? ... The next thing that doesn't quite work as expected is the open file ... (microsoft.public.dotnet.languages.vb) - Re: HLA syntax
... interesting nobody was missing it in assembly yet. ... I've not seen it mentioned in the FASM ... documentation I have no clue how I might use it. ... The HLA compile-time language contains a random number generator, ... (alt.lang.asm) |
|