Hi,
I am trying to find all the unused methods of my project. I have search ways of doing this, but the most convincing answer I found was to declare all my functions as obsolete, and remove this attribute until I got no warnings.
The problem is that I don't know how to declare a function as obsolete. When I write:
[Obsolete]
class Vector3{
};
VS2005 tells me that Obsolete does not exist. Any suggestions?