Lol and that's why the entire language sucks? If you try hard you make actually grasp those straws. I do a lot of fairly complex string comparing an manipulation all of the time. I can definitely attest that simply checking strings as equal to eachother has never taken over 2 second per comparison. That would make the language nearly unusable. This is also kind of a silly point for why and entire language sucks. The difference is simply in how you evaluate the strings. Using the function vs the operator. You can just use the faster one. Also, based on the article that you cited c# took far longer than vb, just didnt have as large a gap between the function and the operator method.
VB
Equals Operator: 0.00150214622249476 sec
Equals Function: 1.9555558038801E-06 sec
C#
Equals Operator: 9.77777901940051E-06 sec
Equals Function: 2.23492091872012E-06 sec
So...not sure of the point here.
I also may mention that while there are always differences between languages (and in the case of vb and c# .net they are slight). The real question is what which language the most powerful, most rapid to develop in and provides you with what you need to accomplish your objective as a whole.
Last edited: