Which would be better code:
int pos = file.dmFileDescr.LastIndexOf(".", StringComparison.InvariantCultureIgnoreCase);
or
int pos = file.dmFileDescr.LastIndexOf(".", StringComparison.OrdinalIgnoreCase);
feedback
|
|
If you really want to match only the dot, then the CultureInfo.Ordinal would be fastest, as there is no case-difference. | |||
|
feedback
|
|
Neither code is always better. They do different things, so they are good at different things.
| ||||
|
feedback
|
|
FXCop typically prefers For English there is very little difference. It is when you wander into languages that have different written language constructs that this becomes an issue. I am not experienced enough to give you more than that. OrdinalIgnoreCase
InvariantCultureIgnoreCase
| |||
|
feedback
|
|
You seem to be doing file name comparisons, so I would just add that | ||||
|
feedback
|