P
Phill
In Visual C++ I Can do This
//-------------------
//Name: myMethod()
//Desc: This Method Does Somthing Cool And Returns True Or False
//-------------------
bool Obj::myMethod() {}
When I went to use this method and typed:
obj.m
The little intellisense window thing would show my method and the
commnet above it would show so I could see what the function did. So
far in C# I'm only getting the signature of the method. Which is nice
but I'd like to have a comment appear as well. Anyone know how to do
this?
//-------------------
//Name: myMethod()
//Desc: This Method Does Somthing Cool And Returns True Or False
//-------------------
bool Obj::myMethod() {}
When I went to use this method and typed:
obj.m
The little intellisense window thing would show my method and the
commnet above it would show so I could see what the function did. So
far in C# I'm only getting the signature of the method. Which is nice
but I'd like to have a comment appear as well. Anyone know how to do
this?