Created and populated some of the Game class

This commit is contained in:
Andreas 2022-12-08 12:23:14 +01:00
parent 59bfc8a050
commit 6bdd4cac59

View File

@ -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<int, String> table_data;
private KeyValuePair<int, String> record;
// Define methods
public KeyValuePair<int, String> find()
{
return new KeyValuePair<int, string>();
}
}
}