I am new to ReSharper and have integrated with Visual Studio 2010. I have found a suggestion in the code as follows,
string query;
query = "SELECT * FROM Employee";
The ReSharper tool asked me to change the above code to
const string query = "SELECT * FROM Employee";
What is the performance benefit i get from this?