From 023c82a0f059fe8fb6eeea78c2dacee0a53e4e5c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 22 Jan 2026 07:57:18 +0000 Subject: [PATCH 1/2] Initial plan From 1f94bc39d503deacc782dcfbc754ec955852e4b3 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 22 Jan 2026 07:59:07 +0000 Subject: [PATCH 2/2] Fix typo: rename GetllCurrencyCodesByCountryCode to GetAllCurrencyCodesByCountryCode Co-authored-by: frankodoom <10815235+frankodoom@users.noreply.github.com> --- sample/CountryData.Sample.Console/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sample/CountryData.Sample.Console/Program.cs b/sample/CountryData.Sample.Console/Program.cs index 33313df..5bc35b3 100644 --- a/sample/CountryData.Sample.Console/Program.cs +++ b/sample/CountryData.Sample.Console/Program.cs @@ -27,7 +27,7 @@ public static void Main() GetCurrencyCodesByCountryCode("US"); GetCountryByCurrencyCode("GHS"); GetCountryCode("Ghana"); - GetllCurrencyCodesByCountryCode(); + GetAllCurrencyCodesByCountryCode(); } @@ -169,7 +169,7 @@ private static void GetCountryCode(string countryName) /// /// The short country code to look up currency codes for. - public static void GetllCurrencyCodesByCountryCode() + public static void GetAllCurrencyCodesByCountryCode() { var countryData = _helper.GetCountryData();