This commit is contained in:
Hisham Bin Ateya 2015-10-24 04:53:38 +03:00 committed by Kirthi Krishnamraju
parent c79e8e8886
commit bb83bd27cb
1 changed files with 2 additions and 2 deletions

View File

@ -18,13 +18,13 @@ namespace Microsoft.Extensions.Globalization
/// <summary> /// <summary>
/// Gets a read-only cached <see cref="CultureInfo"/> for the specified name. Only names that exist in /// Gets a read-only cached <see cref="CultureInfo"/> for the specified name. Only names that exist in
/// <see cref="KnownCultureNames"/> will be used. /// <paramref name="supportedCultures"/> will be used.
/// </summary> /// </summary>
/// <param name="name">The culture name.</param> /// <param name="name">The culture name.</param>
/// <param name="supportedCultures">The cultures supported by the application.</param> /// <param name="supportedCultures">The cultures supported by the application.</param>
/// <returns> /// <returns>
/// A read-only cached <see cref="CultureInfo"/> or <c>null</c> a match wasn't found in /// A read-only cached <see cref="CultureInfo"/> or <c>null</c> a match wasn't found in
/// <see cref="KnownCultureNames"/>. /// <paramref name="supportedCultures"/>.
/// </returns> /// </returns>
public static CultureInfo GetCultureInfo(string name, IList<CultureInfo> supportedCultures) public static CultureInfo GetCultureInfo(string name, IList<CultureInfo> supportedCultures)
{ {