aspnetcore/src/Middleware/Localization
Martin Costello 5155e11120
Two minor perf tweaks in CORS and Localization middleware (#23190)
* Use char instead of char[] for string.Split

Use the newer overload for string.Split() that accepts a char instead of creating a char array.

* Remove redundant bounds check

Remove redundant bounds check for count of exactly 1 as that has already been checked to be true by the previous check.
2020-06-24 07:17:33 -07:00
..
ref
sample
src
test
testassets
Localization.slnf
README.md

README.md

Localization

Localization abstractions and implementations for ASP.NET Core applications.

Localization Samples

Here are a few samples that demonstrate different localization features including: localized views, localized strings in data annotations, creating custom localization resources ... etc.

Localization Providers

Community projects adapt RequestCultureProvider for determining the culture information of an HttpRequest.

Localization Resources

Community projects adapt IStringLocalizer for fetching the localiztion resources.