I am very new to C# and I have to optimize 100's of C# file.The first optimization I have to do is convert String comparison like
if(A == B)
to
if(string.Compare(A, B) == 0)
More complex comparisons are there to convert but this is just a simple example. Is there any ready made solution to perform this mechanical task?A textpad macro will also help.