I am trying to find all the unused methods of my project. I have ways to do this, but the most convincing answer I have found is to declare all my functions obsolete and remove this attribute until I get any warnings.
The problem is that I do not know how to declare a function obsolete. When I write:
[Obsolete]
class Vector3{
};
VS2005 tells me that Obsolete does not exist. Any suggestions?
source
share