cs1 improvements

This commit is contained in:
renspastoor
2025-06-12 11:57:48 +02:00
parent 1086760c4a
commit 3d69c8b93d
21 changed files with 278 additions and 261 deletions

Binary file not shown.

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<configuration> <configuration>
<startup> <startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/>
</startup> </startup>
</configuration> </configuration>

View File

@@ -51,7 +51,15 @@ namespace PoloClubApp
/// <returns>List of wearable devices.</returns> /// <returns>List of wearable devices.</returns>
public List<Device> GetAllWearables() public List<Device> GetAllWearables()
{ {
return devices.Where(d => d is IWearable).ToList(); List<Device> wearables = new List<Device>();
foreach (Device device in devices)
{
if (device is IWearable)
{
wearables.Add(device);
}
}
return wearables;
} }
/// <summary> /// <summary>
@@ -62,8 +70,8 @@ namespace PoloClubApp
/// <exception cref="Exception">Thrown if device is not found.</exception> /// <exception cref="Exception">Thrown if device is not found.</exception>
public void AssignDevice(int id, string playerName) public void AssignDevice(int id, string playerName)
{ {
var device = GetDeviceById(id) ?? throw new Exception("Device not found"); Device device = GetDeviceById(id) ?? throw new Exception("Device not found");
var waterResistance = (device as IWearable)?.GetWaterResistanceMeters(); int? waterResistance = (device as IWearable)?.GetWaterResistanceMeters();
device.AssignDevice(playerName, waterResistance); device.AssignDevice(playerName, waterResistance);
} }
@@ -74,7 +82,7 @@ namespace PoloClubApp
/// <returns>True if successful, false if device not found.</returns> /// <returns>True if successful, false if device not found.</returns>
public bool ReturnDevice(int id) public bool ReturnDevice(int id)
{ {
var device = GetDeviceById(id); Device device = GetDeviceById(id);
return device?.ReturnDevice() ?? false; return device?.ReturnDevice() ?? false;
} }
@@ -95,8 +103,8 @@ namespace PoloClubApp
/// <returns>Formatted report lines.</returns> /// <returns>Formatted report lines.</returns>
public List<string> GenerateReportPerPlayer(string playerName) public List<string> GenerateReportPerPlayer(string playerName)
{ {
var assignedDevices = GetAllAssignedDevicesByPlayer(playerName); List<Device> assignedDevices = GetAllAssignedDevicesByPlayer(playerName);
var report = new List<string> List<string> report = new List<string>
{ {
$"List of devices assigned to {playerName}", $"List of devices assigned to {playerName}",
"Phones", "Phones",

View File

@@ -59,7 +59,7 @@ namespace PoloClubApp {
/// </summary> /// </summary>
/// <returns>True if assigned, false otherwise.</returns> /// <returns>True if assigned, false otherwise.</returns>
public bool IsAssigned(){ public bool IsAssigned(){
return !string.IsNullOrEmpty(PlayerName); return !string.IsNullOrEmpty(PlayerName);
} }
/// <summary> /// <summary>
@@ -68,17 +68,16 @@ namespace PoloClubApp {
/// <param name="playerName">Name of the player to assign to.</param> /// <param name="playerName">Name of the player to assign to.</param>
/// <param name="waterResistanceMeters">Water resistance for wearables (nullable).</param> /// <param name="waterResistanceMeters">Water resistance for wearables (nullable).</param>
/// <exception cref="Exception">Throws when assignment fails.</exception> /// <exception cref="Exception">Throws when assignment fails.</exception>
public void AssignDevice(string playerName, int? waterResistanceMeters) public void AssignDevice(string playerName, int? waterResistanceMeters){
{ if (IsAssigned()){
if (IsAssigned())
throw new Exception("Device is already assigned"); throw new Exception("Device is already assigned");
}
if (this is IWearable && waterResistanceMeters < 3) if (this is IWearable && waterResistanceMeters < 3){
throw new Exception("Water resistance must be 3 meters or more for wearables"); throw new Exception("Water resistance must be 3 meters or more for wearables");
}
if (Id == 0) if (Id == 0){
throw new Exception("Invalid device ID"); throw new Exception("Invalid device ID");
}
PlayerName = playerName; PlayerName = playerName;
} }
@@ -87,11 +86,11 @@ namespace PoloClubApp {
/// </summary> /// </summary>
/// <returns>True if successful, false if device wasn't assigned.</returns> /// <returns>True if successful, false if device wasn't assigned.</returns>
public bool ReturnDevice(){ public bool ReturnDevice(){
if (!IsAssigned()) if (!IsAssigned()){
return false; return false;
}
PlayerName = null; PlayerName = null;
return true; return true;
} }
} }
} }

View File

@@ -1,92 +1,92 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup> <PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{BA2A90B1-738C-47C3-AAFD-B6866F66DB6D}</ProjectGuid> <ProjectGuid>{BA2A90B1-738C-47C3-AAFD-B6866F66DB6D}</ProjectGuid>
<OutputType>WinExe</OutputType> <OutputType>WinExe</OutputType>
<RootNamespace>PoloClubApp</RootNamespace> <RootNamespace>PoloClubApp</RootNamespace>
<AssemblyName>PoloClubApp</AssemblyName> <AssemblyName>PoloClubApp</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment> <FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic> <Deterministic>true</Deterministic>
<TargetFrameworkProfile /> <TargetFrameworkProfile />
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget> <PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols> <DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType> <DebugType>full</DebugType>
<Optimize>false</Optimize> <Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath> <OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants> <DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport> <ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel> <WarningLevel>4</WarningLevel>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget> <PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType> <DebugType>pdbonly</DebugType>
<Optimize>true</Optimize> <Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath> <OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants> <DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport> <ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel> <WarningLevel>4</WarningLevel>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Reference Include="System" /> <Reference Include="System" />
<Reference Include="System.Core" /> <Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" /> <Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" /> <Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" /> <Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" /> <Reference Include="System.Data" />
<Reference Include="System.Deployment" /> <Reference Include="System.Deployment" />
<Reference Include="System.Drawing" /> <Reference Include="System.Drawing" />
<Reference Include="System.Net.Http" /> <Reference Include="System.Net.Http" />
<Reference Include="System.Windows.Forms" /> <Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" /> <Reference Include="System.Xml" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Compile Include="Club.cs" /> <Compile Include="Club.cs" />
<Compile Include="Device.cs" /> <Compile Include="Device.cs" />
<Compile Include="FitTracker.cs" /> <Compile Include="FitTracker.cs" />
<Compile Include="PoloClubAppForm.cs"> <Compile Include="PoloClubAppForm.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
</Compile> </Compile>
<Compile Include="PoloClubAppForm.Designer.cs"> <Compile Include="PoloClubAppForm.Designer.cs">
<DependentUpon>PoloClubAppForm.cs</DependentUpon> <DependentUpon>PoloClubAppForm.cs</DependentUpon>
</Compile> </Compile>
<Compile Include="IWearable.cs" /> <Compile Include="IWearable.cs" />
<Compile Include="Program.cs" /> <Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="SmartPhone.cs" /> <Compile Include="SmartPhone.cs" />
<Compile Include="SmartWatch.cs" /> <Compile Include="SmartWatch.cs" />
<EmbeddedResource Include="PoloClubAppForm.resx"> <EmbeddedResource Include="PoloClubAppForm.resx">
<DependentUpon>PoloClubAppForm.cs</DependentUpon> <DependentUpon>PoloClubAppForm.cs</DependentUpon>
<SubType>Designer</SubType> <SubType>Designer</SubType>
</EmbeddedResource> </EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx"> <EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator> <Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput> <LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType> <SubType>Designer</SubType>
</EmbeddedResource> </EmbeddedResource>
<Compile Include="Properties\Resources.Designer.cs"> <Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen> <AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon> <DependentUpon>Resources.resx</DependentUpon>
<DesignTime>True</DesignTime> <DesignTime>True</DesignTime>
</Compile> </Compile>
<None Include="Properties\Settings.settings"> <None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator> <Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput> <LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None> </None>
<Compile Include="Properties\Settings.Designer.cs"> <Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen> <AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon> <DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput> <DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile> </Compile>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<None Include="App.config" /> <None Include="App.config" />
</ItemGroup> </ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project> </Project>

View File

@@ -202,7 +202,6 @@
// //
// saveFileDialog1 // saveFileDialog1
// //
this.saveFileDialog1.FileOk += new System.ComponentModel.CancelEventHandler(this.saveFileDialog1_FileOk);
// //
// PoloClubAppForm // PoloClubAppForm
// //
@@ -215,7 +214,6 @@
this.Controls.Add(this.lbOverview); this.Controls.Add(this.lbOverview);
this.Name = "PoloClubAppForm"; this.Name = "PoloClubAppForm";
this.Text = "Form1"; this.Text = "Form1";
this.Load += new System.EventHandler(this.PoloClubAppForm_Load);
this.groupBox1.ResumeLayout(false); this.groupBox1.ResumeLayout(false);
this.groupBox2.ResumeLayout(false); this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout(); this.groupBox2.PerformLayout();

View File

@@ -19,14 +19,14 @@ using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows.Forms; using System.Windows.Forms;
namespace PoloClubApp { namespace PoloClubApp {
public partial class PoloClubAppForm : Form { public partial class PoloClubAppForm : Form {
// Provide your answers here // Provide your answers here
private void btnViewAllWearables_Click(object sender, EventArgs e){ private void btnViewAllWearables_Click(object sender, EventArgs e){
List<Device> wearables = myClub.GetAllWearables(); List<Device> wearables = myClub.GetAllWearables();
lbOverview.Items.Clear(); lbOverview.Items.Clear();
foreach (Device wearable in wearables) foreach (Device wearable in wearables){
{
lbOverview.Items.Add(wearable.GetDetails()); lbOverview.Items.Add(wearable.GetDetails());
} }
} }
@@ -34,16 +34,19 @@ namespace PoloClubApp {
private void btnAssign_Click(object sender, EventArgs e){ private void btnAssign_Click(object sender, EventArgs e){
try { try {
if (string.IsNullOrWhiteSpace(tbPlayerName.Text)){ if (string.IsNullOrWhiteSpace(tbPlayerName.Text)){
MessageBox.Show("Please enter a player name"); MessageBox.Show("Please enter a player name.");
return;
}
if (cbDevice.SelectedItem == null){
MessageBox.Show("Please select a device.");
return;
}
if (!int.TryParse(cbDevice.SelectedItem.ToString(), out int deviceId)){
MessageBox.Show("Invalid device selection. Please select a valid device.");
return; return;
} }
int deviceId = int.Parse(cbDevice.SelectedItem.ToString());
myClub.AssignDevice(deviceId, tbPlayerName.Text); myClub.AssignDevice(deviceId, tbPlayerName.Text);
MessageBox.Show("Device assigned successfully"); MessageBox.Show("Device assigned successfully.");
}
catch (FormatException){
MessageBox.Show("Please select a valid device");
} }
catch (Exception ex){ catch (Exception ex){
MessageBox.Show($"Error assigning device: {ex.Message}"); MessageBox.Show($"Error assigning device: {ex.Message}");
@@ -62,17 +65,15 @@ namespace PoloClubApp {
} }
} }
private void btnGeneratePlayerTextReport_Click(object sender, EventArgs e)
private void btnGeneratePlayerTextReport_Click(object sender, EventArgs e){ {
List<string> report = myClub.GenerateReportPerPlayer(tbPlayerName.Text); List<string> report = myClub.GenerateReportPerPlayer(tbPlayerNameForFile.Text);
lbOverview.Items.Clear(); lbOverview.Items.Clear();
foreach (string line in report){ foreach (string line in report){
lbOverview.Items.Add(line); lbOverview.Items.Add(line);
} }
} }
// -----The provided code below will not be graded, therefore should not be changed----- // -----The provided code below will not be graded, therefore should not be changed-----
private Club myClub; private Club myClub;
@@ -103,12 +104,13 @@ namespace PoloClubApp {
} }
} }
private void btnViewAllDevices_Click(object sender, EventArgs e){ private void btnViewAllDevices_Click(object sender, EventArgs e)
{
this.lbOverview.Items.Clear(); this.lbOverview.Items.Clear();
foreach (Device dev in myClub.GetAllDevices()){ foreach (Device dev in myClub.GetAllDevices())
{
this.lbOverview.Items.Add(dev.GetDetails()); this.lbOverview.Items.Add(dev.GetDetails());
} }
} }
} }
} }

View File

@@ -1,63 +1,63 @@
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// <auto-generated> // <auto-generated>
// This code was generated by a tool. // This code was generated by a tool.
// Runtime Version:4.0.30319.42000 // Runtime Version:4.0.30319.42000
// //
// Changes to this file may cause incorrect behavior and will be lost if // Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated. // the code is regenerated.
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
namespace PoloClubApp.Properties { namespace PoloClubApp.Properties {
using System; using System;
/// <summary> /// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc. /// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary> /// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder // This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio. // class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen // To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project. // with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources { internal class Resources {
private static global::System.Resources.ResourceManager resourceMan; private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture; private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resources() { internal Resources() {
} }
/// <summary> /// <summary>
/// Returns the cached ResourceManager instance used by this class. /// Returns the cached ResourceManager instance used by this class.
/// </summary> /// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager { internal static global::System.Resources.ResourceManager ResourceManager {
get { get {
if (object.ReferenceEquals(resourceMan, null)) { if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("PoloClubApp.Properties.Resources", typeof(Resources).Assembly); global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("PoloClubApp.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp; resourceMan = temp;
} }
return resourceMan; return resourceMan;
} }
} }
/// <summary> /// <summary>
/// Overrides the current thread's CurrentUICulture property for all /// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class. /// resource lookups using this strongly typed resource class.
/// </summary> /// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture { internal static global::System.Globalization.CultureInfo Culture {
get { get {
return resourceCulture; return resourceCulture;
} }
set { set {
resourceCulture = value; resourceCulture = value;
} }
} }
} }
} }

View File

@@ -1,26 +1,26 @@
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// <auto-generated> // <auto-generated>
// This code was generated by a tool. // This code was generated by a tool.
// Runtime Version:4.0.30319.42000 // Runtime Version:4.0.30319.42000
// //
// Changes to this file may cause incorrect behavior and will be lost if // Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated. // the code is regenerated.
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
namespace PoloClubApp.Properties { namespace PoloClubApp.Properties {
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.13.0.0")] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.12.0.0")]
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
public static Settings Default { public static Settings Default {
get { get {
return defaultInstance; return defaultInstance;
} }
} }
} }
} }

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<configuration> <configuration>
<startup> <startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/>
</startup> </startup>
</configuration> </configuration>

View File

@@ -1 +1 @@
2dd441a6dcab245f72940a1e3dc8fb177864ab58 90cb8bf3ebafd798eee9d80691d19f1b5819e6787f258fb71804932ed0b5e337

View File

@@ -1,29 +1,39 @@
C:\Users\gijs\Downloads\PoloClubApp\PoloClubApp\bin\Debug\PoloClubApp.exe C:\Users\gijs\Downloads\PoloClubApp\PoloClubApp\bin\Debug\PoloClubApp.exe
C:\Users\gijs\Downloads\PoloClubApp\PoloClubApp\bin\Debug\PoloClubApp.exe.config C:\Users\gijs\Downloads\PoloClubApp\PoloClubApp\bin\Debug\PoloClubApp.exe.config
C:\Users\gijs\Downloads\PoloClubApp\PoloClubApp\obj\Debug\PoloClubApp.csproj.AssemblyReference.cache C:\Users\gijs\Downloads\PoloClubApp\PoloClubApp\obj\Debug\PoloClubApp.csproj.AssemblyReference.cache
C:\Users\gijs\Downloads\PoloClubApp\PoloClubApp\obj\Debug\PoloClubApp.PoloClubAppForm.resources C:\Users\gijs\Downloads\PoloClubApp\PoloClubApp\obj\Debug\PoloClubApp.PoloClubAppForm.resources
C:\Users\gijs\Downloads\PoloClubApp\PoloClubApp\obj\Debug\PoloClubApp.Properties.Resources.resources C:\Users\gijs\Downloads\PoloClubApp\PoloClubApp\obj\Debug\PoloClubApp.Properties.Resources.resources
C:\Users\gijs\Downloads\PoloClubApp\PoloClubApp\obj\Debug\PoloClubApp.csproj.GenerateResource.cache C:\Users\gijs\Downloads\PoloClubApp\PoloClubApp\obj\Debug\PoloClubApp.csproj.GenerateResource.cache
C:\Users\gijs\Downloads\PoloClubApp\PoloClubApp\obj\Debug\PoloClubApp.csproj.CoreCompileInputs.cache C:\Users\gijs\Downloads\PoloClubApp\PoloClubApp\obj\Debug\PoloClubApp.csproj.CoreCompileInputs.cache
C:\Users\gijs\Downloads\PoloClubApp\PoloClubApp\obj\Debug\PoloClubApp.exe C:\Users\gijs\Downloads\PoloClubApp\PoloClubApp\obj\Debug\PoloClubApp.exe
C:\Users\gijs\Downloads\PoloClubApp\PoloClubApp\obj\Debug\PoloClubApp.pdb C:\Users\gijs\Downloads\PoloClubApp\PoloClubApp\obj\Debug\PoloClubApp.pdb
C:\Users\rens\Downloads\school-Csharp-programming-main\school-Csharp-programming-main\poloclub app\PoloClubApp\PoloClubApp\bin\Debug\PoloClubApp.exe.config C:\Users\rens\Downloads\school-Csharp-programming-main\school-Csharp-programming-main\poloclub app\PoloClubApp\PoloClubApp\bin\Debug\PoloClubApp.exe.config
C:\Users\rens\Downloads\school-Csharp-programming-main\school-Csharp-programming-main\poloclub app\PoloClubApp\PoloClubApp\bin\Debug\PoloClubApp.exe C:\Users\rens\Downloads\school-Csharp-programming-main\school-Csharp-programming-main\poloclub app\PoloClubApp\PoloClubApp\bin\Debug\PoloClubApp.exe
C:\Users\rens\Downloads\school-Csharp-programming-main\school-Csharp-programming-main\poloclub app\PoloClubApp\PoloClubApp\bin\Debug\PoloClubApp.pdb C:\Users\rens\Downloads\school-Csharp-programming-main\school-Csharp-programming-main\poloclub app\PoloClubApp\PoloClubApp\bin\Debug\PoloClubApp.pdb
C:\Users\rens\Downloads\school-Csharp-programming-main\school-Csharp-programming-main\poloclub app\PoloClubApp\PoloClubApp\obj\Debug\PoloClubApp.csproj.AssemblyReference.cache C:\Users\rens\Downloads\school-Csharp-programming-main\school-Csharp-programming-main\poloclub app\PoloClubApp\PoloClubApp\obj\Debug\PoloClubApp.csproj.AssemblyReference.cache
C:\Users\rens\Downloads\school-Csharp-programming-main\school-Csharp-programming-main\poloclub app\PoloClubApp\PoloClubApp\obj\Debug\PoloClubApp.PoloClubAppForm.resources C:\Users\rens\Downloads\school-Csharp-programming-main\school-Csharp-programming-main\poloclub app\PoloClubApp\PoloClubApp\obj\Debug\PoloClubApp.PoloClubAppForm.resources
C:\Users\rens\Downloads\school-Csharp-programming-main\school-Csharp-programming-main\poloclub app\PoloClubApp\PoloClubApp\obj\Debug\PoloClubApp.Properties.Resources.resources C:\Users\rens\Downloads\school-Csharp-programming-main\school-Csharp-programming-main\poloclub app\PoloClubApp\PoloClubApp\obj\Debug\PoloClubApp.Properties.Resources.resources
C:\Users\rens\Downloads\school-Csharp-programming-main\school-Csharp-programming-main\poloclub app\PoloClubApp\PoloClubApp\obj\Debug\PoloClubApp.csproj.GenerateResource.cache C:\Users\rens\Downloads\school-Csharp-programming-main\school-Csharp-programming-main\poloclub app\PoloClubApp\PoloClubApp\obj\Debug\PoloClubApp.csproj.GenerateResource.cache
C:\Users\rens\Downloads\school-Csharp-programming-main\school-Csharp-programming-main\poloclub app\PoloClubApp\PoloClubApp\obj\Debug\PoloClubApp.csproj.CoreCompileInputs.cache C:\Users\rens\Downloads\school-Csharp-programming-main\school-Csharp-programming-main\poloclub app\PoloClubApp\PoloClubApp\obj\Debug\PoloClubApp.csproj.CoreCompileInputs.cache
C:\Users\rens\Downloads\school-Csharp-programming-main\school-Csharp-programming-main\poloclub app\PoloClubApp\PoloClubApp\obj\Debug\PoloClubApp.exe C:\Users\rens\Downloads\school-Csharp-programming-main\school-Csharp-programming-main\poloclub app\PoloClubApp\PoloClubApp\obj\Debug\PoloClubApp.exe
C:\Users\rens\Downloads\school-Csharp-programming-main\school-Csharp-programming-main\poloclub app\PoloClubApp\PoloClubApp\obj\Debug\PoloClubApp.pdb C:\Users\rens\Downloads\school-Csharp-programming-main\school-Csharp-programming-main\poloclub app\PoloClubApp\PoloClubApp\obj\Debug\PoloClubApp.pdb
C:\Users\Rens\Downloads\PoloClubApp\bin\Debug\PoloClubApp.exe.config C:\Users\Rens\Downloads\PoloClubApp\bin\Debug\PoloClubApp.exe.config
C:\Users\Rens\Downloads\PoloClubApp\bin\Debug\PoloClubApp.exe C:\Users\Rens\Downloads\PoloClubApp\bin\Debug\PoloClubApp.exe
C:\Users\Rens\Downloads\PoloClubApp\bin\Debug\PoloClubApp.pdb C:\Users\Rens\Downloads\PoloClubApp\bin\Debug\PoloClubApp.pdb
C:\Users\Rens\Downloads\PoloClubApp\obj\Debug\PoloClubApp.csproj.AssemblyReference.cache C:\Users\Rens\Downloads\PoloClubApp\obj\Debug\PoloClubApp.csproj.AssemblyReference.cache
C:\Users\Rens\Downloads\PoloClubApp\obj\Debug\PoloClubApp.PoloClubAppForm.resources C:\Users\Rens\Downloads\PoloClubApp\obj\Debug\PoloClubApp.PoloClubAppForm.resources
C:\Users\Rens\Downloads\PoloClubApp\obj\Debug\PoloClubApp.Properties.Resources.resources C:\Users\Rens\Downloads\PoloClubApp\obj\Debug\PoloClubApp.Properties.Resources.resources
C:\Users\Rens\Downloads\PoloClubApp\obj\Debug\PoloClubApp.csproj.GenerateResource.cache C:\Users\Rens\Downloads\PoloClubApp\obj\Debug\PoloClubApp.csproj.GenerateResource.cache
C:\Users\Rens\Downloads\PoloClubApp\obj\Debug\PoloClubApp.csproj.CoreCompileInputs.cache C:\Users\Rens\Downloads\PoloClubApp\obj\Debug\PoloClubApp.csproj.CoreCompileInputs.cache
C:\Users\Rens\Downloads\PoloClubApp\obj\Debug\PoloClubApp.exe C:\Users\Rens\Downloads\PoloClubApp\obj\Debug\PoloClubApp.exe
C:\Users\Rens\Downloads\PoloClubApp\obj\Debug\PoloClubApp.pdb C:\Users\Rens\Downloads\PoloClubApp\obj\Debug\PoloClubApp.pdb
C:\Users\Gebruiker\T2\CS\CS1 PoloClubApp_RensPastoor\obj\Debug\PoloClubApp.csproj.AssemblyReference.cache
C:\Users\Gebruiker\T2\CS\CS1 PoloClubApp_RensPastoor\obj\Debug\PoloClubApp.PoloClubAppForm.resources
C:\Users\Gebruiker\T2\CS\CS1 PoloClubApp_RensPastoor\obj\Debug\PoloClubApp.Properties.Resources.resources
C:\Users\Gebruiker\T2\CS\CS1 PoloClubApp_RensPastoor\obj\Debug\PoloClubApp.csproj.GenerateResource.cache
C:\Users\Gebruiker\T2\CS\CS1 PoloClubApp_RensPastoor\obj\Debug\PoloClubApp.csproj.CoreCompileInputs.cache
C:\Users\Gebruiker\T2\CS\CS1 PoloClubApp_RensPastoor\obj\Debug\PoloClubApp.exe
C:\Users\Gebruiker\T2\CS\CS1 PoloClubApp_RensPastoor\obj\Debug\PoloClubApp.pdb
C:\Users\Gebruiker\T2\CS\CS1 PoloClubApp_RensPastoor\bin\Debug\PoloClubApp.exe.config
C:\Users\Gebruiker\T2\CS\CS1 PoloClubApp_RensPastoor\bin\Debug\PoloClubApp.exe
C:\Users\Gebruiker\T2\CS\CS1 PoloClubApp_RensPastoor\bin\Debug\PoloClubApp.pdb