Gaurav Gupta
Gaurav Gupta

Reputation: 491

Rename a Class in .NET Project

I have a Static Class with the name "Common". This class is used so many places within the Project..

Now, For some reasons I have to Change the Class name "Common" to "NewCommon"..

How I can rename the class, so that changes are reflects in the whole project where the "Common" class is being used????

Note My Project is on tfs..

Upvotes: 0

Views: 149

Answers (1)

Tim Ebenezer
Tim Ebenezer

Reputation: 2724

If you right click on the Class name, you will see an option called "Refactor". Hover over it and click "Rename".

Upvotes: 2

Related Questions