Browse by Tags
All Tags » C# » configuration
-
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 ...
-
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)
{
...
|
|