/**
* Causes work to be done
*
* @param string workRequest
*/
public void DoWork(string workRequest)
{
// etc...
}
As opposed to the standard:
///
/// Causes work to be done
///
///
public void DoWork(string workRequest)
{
// etc...
}
Is there any "quick fix" to tune VS2010 into using the first style? So that code-hinting will still work?
Baz HughesPosted May 13, 2011, 5:04 PM