I've noticed this for a while now and am just curious if there is any advantage or benefit to "simplifying" the name.
Example:
var lst = new List<int> { 1, 2, 3, 4, 5 };
string commaLst = String.Join(",", lst);
ReSharper then says
Name can be simplified.
And suggests that I change String.Join()
to string.Join()
Is one way better than the other in terms of performance or anything alike? What's the point of simplifying a name?