Skip to content

Commit 04a5449

Browse files
committed
Added ID functions/Released Nuget
1 parent 9ec04b2 commit 04a5449

File tree

49 files changed

+15223
-40
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+15223
-40
lines changed
Binary file not shown.

CovidSharp Example/CovidSharp Example/.vs/CovidSharp Example/v15/Server/sqlite3/db.lock

Whitespace-only changes.
Binary file not shown.
Binary file not shown.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.28307.1062
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CovidSharp Example", "CovidSharp Example.csproj", "{C3E9F4A5-0D0F-4967-A869-9232E7DE172A}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{C3E9F4A5-0D0F-4967-A869-9232E7DE172A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{C3E9F4A5-0D0F-4967-A869-9232E7DE172A}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{C3E9F4A5-0D0F-4967-A869-9232E7DE172A}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{C3E9F4A5-0D0F-4967-A869-9232E7DE172A}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {892F2842-1719-457F-9E73-7F0EE37B17F5}
24+
EndGlobalSection
25+
EndGlobal

CovidSharp Example/CovidSharp Example/Program.cs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,17 @@ static void Main(string[] args)
2222
Console.WriteLine("Denmark Recovered: " + data.FromCountryRecovered("DK"));
2323
Console.WriteLine("Denmark Deaths: " + data.FromCountryDeaths("DK"));
2424

25+
Console.WriteLine("Denmark ID Confirmed: " + data.FromIDConfirmed("94"));
26+
Console.WriteLine("Denmark ID Recovered: " + data.FromCountryRecovered("94"));
27+
Console.WriteLine("Denmark ID Deaths: " + data.FromCountryDeaths("94"));
28+
29+
Console.WriteLine("Name of the Faroe Islands: " + data.FromIDProvince("92"));
30+
Console.WriteLine("Name of the country of the Faroe Islands: " + data.FromIDCountry("92"));
31+
32+
Console.WriteLine("Denmark Latitude: " + data.FromIDLatitude("94"));
33+
Console.WriteLine("Denmark Longtitude: " + data.FromIDLongitude("94"));
34+
35+
2536
Console.ReadLine();
2637
}
2738
}
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)