R
Relaxin
How do you add a comment description to your functions and properties so
that they will show up when you use the Intellisense QuickInfo or member
list?
I've tried regular C++ comments but that didn't work.
ex.
//Dump test function
void MyFunc(int value)
{
....
}
I've also tried regular C++ comments this way.ex.
void MyFunc(int value) //Dump test function
{
....
}
Please help!!
that they will show up when you use the Intellisense QuickInfo or member
list?
I've tried regular C++ comments but that didn't work.
ex.
//Dump test function
void MyFunc(int value)
{
....
}
I've also tried regular C++ comments this way.ex.
void MyFunc(int value) //Dump test function
{
....
}
Please help!!