Browse by Tags
All Tags » C#
Showing page 2 of 4 (31 total posts)
-
In the summary (C#) I created a list of table type. It looked like this when I wrote it.
After running GhostDoc on the file it looks like this
Why is GhostDoc changing all the formatting I did?
-
Hi Craig,
Is there a tutorial how to configure Shared Folder for team features
we have custom rules with a custom profile and I want to share them across all visual studio
we have enterprise license for all users
Thanks!
-
My solution in visual studio is really big and when I try to Build my help with GhostDoc Pro (Commercial version) I always receive a "out of memory" message. My last good result give me a CHM file with 37mo on my hard disk. I create only a HTML Help 1, not with website. All other parameter is by default.
Visual studio 2010 ...
-
Consider the following code:/// <summary>
/// Initializes the tradingbook dropdown.
/// </summary>
private void InitializeTradingbookDropdown()
{
LSTUIHelper.PopulateTradingBookDropDown(this.cboTradingBook, DataExchangeService, false, false);
}
I would prefer ...
-
Consider the following Gosdoc-generated documetation:/// <summary>
/// Inits the trading book drop down.
/// </summary>
private void InitTradingBookDropDown()
{
LSTUIHelper.PopulateTradingBookDropDown(this.cboTradingBook, DataExchangeService, false, false);
}Note ...
-
For simple code such as this:
class Test
{
void Method()
{
Action action = () =>
{
Console.WriteLine(); // <-- <--
};
}
}
If we place the cursor on the line with the arrow comment and execute "Document This",
GhostDoc will write a comment describing the Test ...
-
Is it possible to include inherited properties in the documentation?
Example:
File - Entity.cs
namespace Test
{
using System.ComponentModel.DataAnnotations;
/// <summary>
/// Class Entity
/// <p>Provides a base from which all entities, which require a unique ...
-
While working in C# using VS2012 and GhostDoc 4, if the class is not build-able, meaning you are not finished, but wish to generate doc for one of it's methods, it will fail with the message, "To generate XML comments you must select a type or a member", this is very confusing because you have a type/member selected, an example that ...
-
I am searching for a couple items without much success. I would like some documentation regardaing macros and use of macros in the t4 templates. I would like to know about other API items (i.e. Context) that are available in the T4 templates. For example, the Field template is used in classes and for enumeration members; how can ...
-
Hi
all,
I've introduced my own rules to extend the xml output of properties, methods, fields, etc.
As mentioned in the subject, the processor stops processing, if it hits on
a List<T> type.
Take this short code snippet as an example:
public List<string>
TestMethod(List<string> test)
{
...
2
|
|