We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10fa053 commit 3c5df23Copy full SHA for 3c5df23
1 file changed
CountryHelper.cs
@@ -48,9 +48,9 @@ public IEnumerable<Country> GetCountryData()
48
/// </summary>
49
/// <param name="ShortCode"></param>
50
/// <returns>Country</returns>
51
- public Country GetCountryByCode(string ShortCode)
+ public Country GetCountryByCode(string shortCode)
52
{
53
- return _Countries.SingleOrDefault(c => c.CountryShortCode == ShortCode);
+ return _Countries.SingleOrDefault(c => c.CountryShortCode == shortCode);
54
}
55
56
0 commit comments