You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Indeed, the OrdinalIgnoreCase StringComparer is much faster than InvariantCultureIgnoreCase. A performance comparison is available here (https://blogs.msdn.microsoft.com/noahc/2007/06/29/string-equals-performance-comparison/). Using OrdinalIgnoreCase brings arround 5x improvement in speed when compared to InvariantCultureIgnoreCase (in .Net 3.5).
When comparing String, OrdinalIgnoreCase is supposed to be faster than InvariantCultureIgnoreCase.
As the Cobol source code is not Culture dependant, we can switch to OrdinalIgnoreCase in SymbolTable and compare performance.
The text was updated successfully, but these errors were encountered: