From 6bdd4cac5954a45dc7d7f7840bd19dfb35639e0d Mon Sep 17 00:00:00 2001 From: Andreas Date: Thu, 8 Dec 2022 12:23:14 +0100 Subject: [PATCH] Created and populated some of the Game class --- .../classes/Game.cs | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 OOP-Opdracht-CSharp-Alfa-2022/OOP-Opdracht-CSharp-Alfa-2022/classes/Game.cs diff --git a/OOP-Opdracht-CSharp-Alfa-2022/OOP-Opdracht-CSharp-Alfa-2022/classes/Game.cs b/OOP-Opdracht-CSharp-Alfa-2022/OOP-Opdracht-CSharp-Alfa-2022/classes/Game.cs new file mode 100644 index 0000000..234a498 --- /dev/null +++ b/OOP-Opdracht-CSharp-Alfa-2022/OOP-Opdracht-CSharp-Alfa-2022/classes/Game.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.Text; +using Microsoft.Data.SqlClient; + +namespace OOP_Opdracht_CSharp_Alfa_2022.classes +{ + class Game + { + // Define class members + + private SqlConnection connection; + private Dictionary table_data; + private KeyValuePair record; + + // Define methods + + public KeyValuePair find() + { + + return new KeyValuePair(); + } + + } +}