├── OOP_AbstractClass ├── OOP_Abstaction.sln └── OOP_Abstract │ ├── Account.cs │ ├── AccountClient.cs │ ├── AccountSupplier.cs │ ├── App.config │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── OOP_Abstaction.csproj │ ├── Program.cs │ └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── OOP_ClassObject ├── OOP-ClassObject.sln └── OOPEmployeeRegistration │ ├── App.config │ ├── Employee.cs │ ├── Employees.Designer.cs │ ├── Employees.cs │ ├── Employees.resx │ ├── OOPClassObject.csproj │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── RegistrationScreen.Designer.cs │ ├── RegistrationScreen.cs │ └── RegistrationScreen.resx ├── OOP_Encapsulation ├── .vs │ └── Encapsulation │ │ └── v15 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ ├── storage.ide │ │ ├── storage.ide-shm │ │ └── storage.ide-wal ├── Encapsulation.sln └── Encapsulation │ ├── App.config │ ├── Encapsulation.csproj │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ └── Student.cs ├── OOP_Enum ├── .vs │ └── Struct_Enum │ │ └── v15 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ ├── storage.ide │ │ ├── storage.ide-shm │ │ └── storage.ide-wal ├── Struct_Enum.sln └── Struct_Enum │ ├── App.config │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Struct_Enum.csproj │ └── Student.cs ├── OOP_Inheritance ├── .vs │ └── Inheritance │ │ └── v15 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ ├── storage.ide │ │ ├── storage.ide-shm │ │ └── storage.ide-wal ├── Inheritance.sln └── Inheritance │ ├── App.config │ ├── Employee.cs │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Headmaster.cs │ ├── Inheritance.csproj │ ├── Person.cs │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Student.cs │ ├── Teacher.cs │ ├── TeacherPrimarySchool.cs │ └── TeacherUniversity.cs ├── OOP_Interface ├── OOP_Interface.sln └── OOP_Interface │ ├── App.config │ ├── CalculateDays.cs │ ├── CalculateYear.cs │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── ICalculate.cs │ ├── OOP_Interface.csproj │ ├── Program.cs │ └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── OOP_Polymorphism ├── .vs │ └── Polymorphism │ │ └── v15 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ ├── storage.ide │ │ ├── storage.ide-shm │ │ └── storage.ide-wal ├── Polymorphism.sln └── Polymorphism │ ├── App.config │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Human.cs │ ├── Polymorphism.csproj │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ └── Student.cs ├── OOP_Static ├── .vs │ └── Static │ │ └── v15 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ ├── storage.ide │ │ ├── storage.ide-shm │ │ └── storage.ide-wal ├── Static.sln └── Static │ ├── App.config │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Static.csproj │ └── Student.cs ├── README.md └── Sample_Projects ├── OOP_BankAccountManager ├── .vs │ └── BankAccountManager │ │ └── v15 │ │ └── .suo ├── BankAccountManager.sln └── BankAccountManager │ ├── AccountInformation.cs │ ├── AccountTransaction.cs │ ├── App.config │ ├── BankAccountManager.csproj │ ├── IntroductionStruct.cs │ ├── Login.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── bin │ └── Debug │ │ ├── BankAccountManager.exe │ │ ├── BankAccountManager.exe.config │ │ └── BankAccountManager.pdb │ └── obj │ └── Debug │ ├── BankAccountManager.csproj.FileListAbsolute.txt │ ├── BankAccountManager.csprojResolveAssemblyReference.cache │ ├── BankAccountManager.exe │ ├── BankAccountManager.pdb │ ├── CoreCompileInputs.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs └── OOP_CarParkingSystem ├── CarParkingSystem.sln └── CarParkingSystem ├── App.config ├── CarParkingSystem.csproj ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Report.Designer.cs ├── Report.cs ├── Report.resx ├── Vehicle.cs ├── VehicleType.cs ├── bin └── Debug │ ├── CarParkingSystem.exe │ ├── CarParkingSystem.exe.config │ └── CarParkingSystem.pdb └── obj └── Debug ├── CarParkingSystem.Form1.resources ├── CarParkingSystem.Properties.Resources.resources ├── CarParkingSystem.Report.resources ├── CarParkingSystem.csproj.FileListAbsolute.txt ├── CarParkingSystem.csproj.GenerateResource.Cache ├── CarParkingSystem.csprojResolveAssemblyReference.cache ├── CarParkingSystem.exe ├── CarParkingSystem.pdb ├── CoreCompileInputs.cache ├── DesignTimeResolveAssemblyReferences.cache ├── DesignTimeResolveAssemblyReferencesInput.cache ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs /OOP_AbstractClass/OOP_Abstaction.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_AbstractClass/OOP_Abstaction.sln -------------------------------------------------------------------------------- /OOP_AbstractClass/OOP_Abstract/Account.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_AbstractClass/OOP_Abstract/Account.cs -------------------------------------------------------------------------------- /OOP_AbstractClass/OOP_Abstract/AccountClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_AbstractClass/OOP_Abstract/AccountClient.cs -------------------------------------------------------------------------------- /OOP_AbstractClass/OOP_Abstract/AccountSupplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_AbstractClass/OOP_Abstract/AccountSupplier.cs -------------------------------------------------------------------------------- /OOP_AbstractClass/OOP_Abstract/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_AbstractClass/OOP_Abstract/App.config -------------------------------------------------------------------------------- /OOP_AbstractClass/OOP_Abstract/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_AbstractClass/OOP_Abstract/Form1.Designer.cs -------------------------------------------------------------------------------- /OOP_AbstractClass/OOP_Abstract/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_AbstractClass/OOP_Abstract/Form1.cs -------------------------------------------------------------------------------- /OOP_AbstractClass/OOP_Abstract/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_AbstractClass/OOP_Abstract/Form1.resx -------------------------------------------------------------------------------- /OOP_AbstractClass/OOP_Abstract/OOP_Abstaction.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_AbstractClass/OOP_Abstract/OOP_Abstaction.csproj -------------------------------------------------------------------------------- /OOP_AbstractClass/OOP_Abstract/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_AbstractClass/OOP_Abstract/Program.cs -------------------------------------------------------------------------------- /OOP_AbstractClass/OOP_Abstract/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_AbstractClass/OOP_Abstract/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OOP_AbstractClass/OOP_Abstract/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_AbstractClass/OOP_Abstract/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /OOP_AbstractClass/OOP_Abstract/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_AbstractClass/OOP_Abstract/Properties/Resources.resx -------------------------------------------------------------------------------- /OOP_AbstractClass/OOP_Abstract/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_AbstractClass/OOP_Abstract/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /OOP_AbstractClass/OOP_Abstract/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_AbstractClass/OOP_Abstract/Properties/Settings.settings -------------------------------------------------------------------------------- /OOP_ClassObject/OOP-ClassObject.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_ClassObject/OOP-ClassObject.sln -------------------------------------------------------------------------------- /OOP_ClassObject/OOPEmployeeRegistration/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_ClassObject/OOPEmployeeRegistration/App.config -------------------------------------------------------------------------------- /OOP_ClassObject/OOPEmployeeRegistration/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_ClassObject/OOPEmployeeRegistration/Employee.cs -------------------------------------------------------------------------------- /OOP_ClassObject/OOPEmployeeRegistration/Employees.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_ClassObject/OOPEmployeeRegistration/Employees.Designer.cs -------------------------------------------------------------------------------- /OOP_ClassObject/OOPEmployeeRegistration/Employees.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_ClassObject/OOPEmployeeRegistration/Employees.cs -------------------------------------------------------------------------------- /OOP_ClassObject/OOPEmployeeRegistration/Employees.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_ClassObject/OOPEmployeeRegistration/Employees.resx -------------------------------------------------------------------------------- /OOP_ClassObject/OOPEmployeeRegistration/OOPClassObject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_ClassObject/OOPEmployeeRegistration/OOPClassObject.csproj -------------------------------------------------------------------------------- /OOP_ClassObject/OOPEmployeeRegistration/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_ClassObject/OOPEmployeeRegistration/Program.cs -------------------------------------------------------------------------------- /OOP_ClassObject/OOPEmployeeRegistration/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_ClassObject/OOPEmployeeRegistration/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OOP_ClassObject/OOPEmployeeRegistration/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_ClassObject/OOPEmployeeRegistration/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /OOP_ClassObject/OOPEmployeeRegistration/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_ClassObject/OOPEmployeeRegistration/Properties/Resources.resx -------------------------------------------------------------------------------- /OOP_ClassObject/OOPEmployeeRegistration/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_ClassObject/OOPEmployeeRegistration/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /OOP_ClassObject/OOPEmployeeRegistration/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_ClassObject/OOPEmployeeRegistration/Properties/Settings.settings -------------------------------------------------------------------------------- /OOP_ClassObject/OOPEmployeeRegistration/RegistrationScreen.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_ClassObject/OOPEmployeeRegistration/RegistrationScreen.Designer.cs -------------------------------------------------------------------------------- /OOP_ClassObject/OOPEmployeeRegistration/RegistrationScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_ClassObject/OOPEmployeeRegistration/RegistrationScreen.cs -------------------------------------------------------------------------------- /OOP_ClassObject/OOPEmployeeRegistration/RegistrationScreen.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_ClassObject/OOPEmployeeRegistration/RegistrationScreen.resx -------------------------------------------------------------------------------- /OOP_Encapsulation/.vs/Encapsulation/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Encapsulation/.vs/Encapsulation/v15/.suo -------------------------------------------------------------------------------- /OOP_Encapsulation/.vs/Encapsulation/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OOP_Encapsulation/.vs/Encapsulation/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Encapsulation/.vs/Encapsulation/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /OOP_Encapsulation/.vs/Encapsulation/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Encapsulation/.vs/Encapsulation/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /OOP_Encapsulation/.vs/Encapsulation/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Encapsulation/.vs/Encapsulation/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /OOP_Encapsulation/Encapsulation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Encapsulation/Encapsulation.sln -------------------------------------------------------------------------------- /OOP_Encapsulation/Encapsulation/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Encapsulation/Encapsulation/App.config -------------------------------------------------------------------------------- /OOP_Encapsulation/Encapsulation/Encapsulation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Encapsulation/Encapsulation/Encapsulation.csproj -------------------------------------------------------------------------------- /OOP_Encapsulation/Encapsulation/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Encapsulation/Encapsulation/Form1.Designer.cs -------------------------------------------------------------------------------- /OOP_Encapsulation/Encapsulation/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Encapsulation/Encapsulation/Form1.cs -------------------------------------------------------------------------------- /OOP_Encapsulation/Encapsulation/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Encapsulation/Encapsulation/Form1.resx -------------------------------------------------------------------------------- /OOP_Encapsulation/Encapsulation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Encapsulation/Encapsulation/Program.cs -------------------------------------------------------------------------------- /OOP_Encapsulation/Encapsulation/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Encapsulation/Encapsulation/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OOP_Encapsulation/Encapsulation/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Encapsulation/Encapsulation/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /OOP_Encapsulation/Encapsulation/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Encapsulation/Encapsulation/Properties/Resources.resx -------------------------------------------------------------------------------- /OOP_Encapsulation/Encapsulation/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Encapsulation/Encapsulation/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /OOP_Encapsulation/Encapsulation/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Encapsulation/Encapsulation/Properties/Settings.settings -------------------------------------------------------------------------------- /OOP_Encapsulation/Encapsulation/Student.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Encapsulation/Encapsulation/Student.cs -------------------------------------------------------------------------------- /OOP_Enum/.vs/Struct_Enum/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Enum/.vs/Struct_Enum/v15/.suo -------------------------------------------------------------------------------- /OOP_Enum/.vs/Struct_Enum/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OOP_Enum/.vs/Struct_Enum/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Enum/.vs/Struct_Enum/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /OOP_Enum/.vs/Struct_Enum/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Enum/.vs/Struct_Enum/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /OOP_Enum/.vs/Struct_Enum/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Enum/.vs/Struct_Enum/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /OOP_Enum/Struct_Enum.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Enum/Struct_Enum.sln -------------------------------------------------------------------------------- /OOP_Enum/Struct_Enum/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Enum/Struct_Enum/App.config -------------------------------------------------------------------------------- /OOP_Enum/Struct_Enum/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Enum/Struct_Enum/Form1.Designer.cs -------------------------------------------------------------------------------- /OOP_Enum/Struct_Enum/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Enum/Struct_Enum/Form1.cs -------------------------------------------------------------------------------- /OOP_Enum/Struct_Enum/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Enum/Struct_Enum/Form1.resx -------------------------------------------------------------------------------- /OOP_Enum/Struct_Enum/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Enum/Struct_Enum/Program.cs -------------------------------------------------------------------------------- /OOP_Enum/Struct_Enum/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Enum/Struct_Enum/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OOP_Enum/Struct_Enum/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Enum/Struct_Enum/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /OOP_Enum/Struct_Enum/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Enum/Struct_Enum/Properties/Resources.resx -------------------------------------------------------------------------------- /OOP_Enum/Struct_Enum/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Enum/Struct_Enum/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /OOP_Enum/Struct_Enum/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Enum/Struct_Enum/Properties/Settings.settings -------------------------------------------------------------------------------- /OOP_Enum/Struct_Enum/Struct_Enum.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Enum/Struct_Enum/Struct_Enum.csproj -------------------------------------------------------------------------------- /OOP_Enum/Struct_Enum/Student.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Enum/Struct_Enum/Student.cs -------------------------------------------------------------------------------- /OOP_Inheritance/.vs/Inheritance/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Inheritance/.vs/Inheritance/v15/.suo -------------------------------------------------------------------------------- /OOP_Inheritance/.vs/Inheritance/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OOP_Inheritance/.vs/Inheritance/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Inheritance/.vs/Inheritance/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /OOP_Inheritance/.vs/Inheritance/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Inheritance/.vs/Inheritance/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /OOP_Inheritance/.vs/Inheritance/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Inheritance/.vs/Inheritance/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /OOP_Inheritance/Inheritance.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Inheritance/Inheritance.sln -------------------------------------------------------------------------------- /OOP_Inheritance/Inheritance/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Inheritance/Inheritance/App.config -------------------------------------------------------------------------------- /OOP_Inheritance/Inheritance/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Inheritance/Inheritance/Employee.cs -------------------------------------------------------------------------------- /OOP_Inheritance/Inheritance/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Inheritance/Inheritance/Form1.Designer.cs -------------------------------------------------------------------------------- /OOP_Inheritance/Inheritance/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Inheritance/Inheritance/Form1.cs -------------------------------------------------------------------------------- /OOP_Inheritance/Inheritance/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Inheritance/Inheritance/Form1.resx -------------------------------------------------------------------------------- /OOP_Inheritance/Inheritance/Headmaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Inheritance/Inheritance/Headmaster.cs -------------------------------------------------------------------------------- /OOP_Inheritance/Inheritance/Inheritance.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Inheritance/Inheritance/Inheritance.csproj -------------------------------------------------------------------------------- /OOP_Inheritance/Inheritance/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Inheritance/Inheritance/Person.cs -------------------------------------------------------------------------------- /OOP_Inheritance/Inheritance/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Inheritance/Inheritance/Program.cs -------------------------------------------------------------------------------- /OOP_Inheritance/Inheritance/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Inheritance/Inheritance/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OOP_Inheritance/Inheritance/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Inheritance/Inheritance/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /OOP_Inheritance/Inheritance/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Inheritance/Inheritance/Properties/Resources.resx -------------------------------------------------------------------------------- /OOP_Inheritance/Inheritance/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Inheritance/Inheritance/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /OOP_Inheritance/Inheritance/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Inheritance/Inheritance/Properties/Settings.settings -------------------------------------------------------------------------------- /OOP_Inheritance/Inheritance/Student.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Inheritance/Inheritance/Student.cs -------------------------------------------------------------------------------- /OOP_Inheritance/Inheritance/Teacher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Inheritance/Inheritance/Teacher.cs -------------------------------------------------------------------------------- /OOP_Inheritance/Inheritance/TeacherPrimarySchool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Inheritance/Inheritance/TeacherPrimarySchool.cs -------------------------------------------------------------------------------- /OOP_Inheritance/Inheritance/TeacherUniversity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Inheritance/Inheritance/TeacherUniversity.cs -------------------------------------------------------------------------------- /OOP_Interface/OOP_Interface.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Interface/OOP_Interface.sln -------------------------------------------------------------------------------- /OOP_Interface/OOP_Interface/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Interface/OOP_Interface/App.config -------------------------------------------------------------------------------- /OOP_Interface/OOP_Interface/CalculateDays.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Interface/OOP_Interface/CalculateDays.cs -------------------------------------------------------------------------------- /OOP_Interface/OOP_Interface/CalculateYear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Interface/OOP_Interface/CalculateYear.cs -------------------------------------------------------------------------------- /OOP_Interface/OOP_Interface/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Interface/OOP_Interface/Form1.Designer.cs -------------------------------------------------------------------------------- /OOP_Interface/OOP_Interface/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Interface/OOP_Interface/Form1.cs -------------------------------------------------------------------------------- /OOP_Interface/OOP_Interface/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Interface/OOP_Interface/Form1.resx -------------------------------------------------------------------------------- /OOP_Interface/OOP_Interface/ICalculate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Interface/OOP_Interface/ICalculate.cs -------------------------------------------------------------------------------- /OOP_Interface/OOP_Interface/OOP_Interface.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Interface/OOP_Interface/OOP_Interface.csproj -------------------------------------------------------------------------------- /OOP_Interface/OOP_Interface/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Interface/OOP_Interface/Program.cs -------------------------------------------------------------------------------- /OOP_Interface/OOP_Interface/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Interface/OOP_Interface/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OOP_Interface/OOP_Interface/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Interface/OOP_Interface/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /OOP_Interface/OOP_Interface/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Interface/OOP_Interface/Properties/Resources.resx -------------------------------------------------------------------------------- /OOP_Interface/OOP_Interface/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Interface/OOP_Interface/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /OOP_Interface/OOP_Interface/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Interface/OOP_Interface/Properties/Settings.settings -------------------------------------------------------------------------------- /OOP_Polymorphism/.vs/Polymorphism/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Polymorphism/.vs/Polymorphism/v15/.suo -------------------------------------------------------------------------------- /OOP_Polymorphism/.vs/Polymorphism/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OOP_Polymorphism/.vs/Polymorphism/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Polymorphism/.vs/Polymorphism/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /OOP_Polymorphism/.vs/Polymorphism/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Polymorphism/.vs/Polymorphism/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /OOP_Polymorphism/.vs/Polymorphism/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Polymorphism/.vs/Polymorphism/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /OOP_Polymorphism/Polymorphism.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Polymorphism/Polymorphism.sln -------------------------------------------------------------------------------- /OOP_Polymorphism/Polymorphism/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Polymorphism/Polymorphism/App.config -------------------------------------------------------------------------------- /OOP_Polymorphism/Polymorphism/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Polymorphism/Polymorphism/Form1.Designer.cs -------------------------------------------------------------------------------- /OOP_Polymorphism/Polymorphism/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Polymorphism/Polymorphism/Form1.cs -------------------------------------------------------------------------------- /OOP_Polymorphism/Polymorphism/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Polymorphism/Polymorphism/Form1.resx -------------------------------------------------------------------------------- /OOP_Polymorphism/Polymorphism/Human.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Polymorphism/Polymorphism/Human.cs -------------------------------------------------------------------------------- /OOP_Polymorphism/Polymorphism/Polymorphism.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Polymorphism/Polymorphism/Polymorphism.csproj -------------------------------------------------------------------------------- /OOP_Polymorphism/Polymorphism/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Polymorphism/Polymorphism/Program.cs -------------------------------------------------------------------------------- /OOP_Polymorphism/Polymorphism/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Polymorphism/Polymorphism/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OOP_Polymorphism/Polymorphism/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Polymorphism/Polymorphism/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /OOP_Polymorphism/Polymorphism/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Polymorphism/Polymorphism/Properties/Resources.resx -------------------------------------------------------------------------------- /OOP_Polymorphism/Polymorphism/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Polymorphism/Polymorphism/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /OOP_Polymorphism/Polymorphism/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Polymorphism/Polymorphism/Properties/Settings.settings -------------------------------------------------------------------------------- /OOP_Polymorphism/Polymorphism/Student.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Polymorphism/Polymorphism/Student.cs -------------------------------------------------------------------------------- /OOP_Static/.vs/Static/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Static/.vs/Static/v15/.suo -------------------------------------------------------------------------------- /OOP_Static/.vs/Static/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OOP_Static/.vs/Static/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Static/.vs/Static/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /OOP_Static/.vs/Static/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Static/.vs/Static/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /OOP_Static/.vs/Static/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Static/.vs/Static/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /OOP_Static/Static.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Static/Static.sln -------------------------------------------------------------------------------- /OOP_Static/Static/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Static/Static/App.config -------------------------------------------------------------------------------- /OOP_Static/Static/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Static/Static/Form1.Designer.cs -------------------------------------------------------------------------------- /OOP_Static/Static/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Static/Static/Form1.cs -------------------------------------------------------------------------------- /OOP_Static/Static/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Static/Static/Form1.resx -------------------------------------------------------------------------------- /OOP_Static/Static/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Static/Static/Program.cs -------------------------------------------------------------------------------- /OOP_Static/Static/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Static/Static/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OOP_Static/Static/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Static/Static/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /OOP_Static/Static/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Static/Static/Properties/Resources.resx -------------------------------------------------------------------------------- /OOP_Static/Static/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Static/Static/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /OOP_Static/Static/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Static/Static/Properties/Settings.settings -------------------------------------------------------------------------------- /OOP_Static/Static/Static.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Static/Static/Static.csproj -------------------------------------------------------------------------------- /OOP_Static/Static/Student.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/OOP_Static/Static/Student.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/README.md -------------------------------------------------------------------------------- /Sample_Projects/OOP_BankAccountManager/.vs/BankAccountManager/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_BankAccountManager/.vs/BankAccountManager/v15/.suo -------------------------------------------------------------------------------- /Sample_Projects/OOP_BankAccountManager/BankAccountManager.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_BankAccountManager/BankAccountManager.sln -------------------------------------------------------------------------------- /Sample_Projects/OOP_BankAccountManager/BankAccountManager/AccountInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_BankAccountManager/BankAccountManager/AccountInformation.cs -------------------------------------------------------------------------------- /Sample_Projects/OOP_BankAccountManager/BankAccountManager/AccountTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_BankAccountManager/BankAccountManager/AccountTransaction.cs -------------------------------------------------------------------------------- /Sample_Projects/OOP_BankAccountManager/BankAccountManager/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_BankAccountManager/BankAccountManager/App.config -------------------------------------------------------------------------------- /Sample_Projects/OOP_BankAccountManager/BankAccountManager/BankAccountManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_BankAccountManager/BankAccountManager/BankAccountManager.csproj -------------------------------------------------------------------------------- /Sample_Projects/OOP_BankAccountManager/BankAccountManager/IntroductionStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_BankAccountManager/BankAccountManager/IntroductionStruct.cs -------------------------------------------------------------------------------- /Sample_Projects/OOP_BankAccountManager/BankAccountManager/Login.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_BankAccountManager/BankAccountManager/Login.cs -------------------------------------------------------------------------------- /Sample_Projects/OOP_BankAccountManager/BankAccountManager/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_BankAccountManager/BankAccountManager/Program.cs -------------------------------------------------------------------------------- /Sample_Projects/OOP_BankAccountManager/BankAccountManager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_BankAccountManager/BankAccountManager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Sample_Projects/OOP_BankAccountManager/BankAccountManager/bin/Debug/BankAccountManager.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_BankAccountManager/BankAccountManager/bin/Debug/BankAccountManager.exe -------------------------------------------------------------------------------- /Sample_Projects/OOP_BankAccountManager/BankAccountManager/bin/Debug/BankAccountManager.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_BankAccountManager/BankAccountManager/bin/Debug/BankAccountManager.exe.config -------------------------------------------------------------------------------- /Sample_Projects/OOP_BankAccountManager/BankAccountManager/bin/Debug/BankAccountManager.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_BankAccountManager/BankAccountManager/bin/Debug/BankAccountManager.pdb -------------------------------------------------------------------------------- /Sample_Projects/OOP_BankAccountManager/BankAccountManager/obj/Debug/BankAccountManager.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_BankAccountManager/BankAccountManager/obj/Debug/BankAccountManager.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Sample_Projects/OOP_BankAccountManager/BankAccountManager/obj/Debug/BankAccountManager.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_BankAccountManager/BankAccountManager/obj/Debug/BankAccountManager.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Sample_Projects/OOP_BankAccountManager/BankAccountManager/obj/Debug/BankAccountManager.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_BankAccountManager/BankAccountManager/obj/Debug/BankAccountManager.exe -------------------------------------------------------------------------------- /Sample_Projects/OOP_BankAccountManager/BankAccountManager/obj/Debug/BankAccountManager.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_BankAccountManager/BankAccountManager/obj/Debug/BankAccountManager.pdb -------------------------------------------------------------------------------- /Sample_Projects/OOP_BankAccountManager/BankAccountManager/obj/Debug/CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6ad26a3f06d7ee9fc54d4077be2897c265733c0b 2 | -------------------------------------------------------------------------------- /Sample_Projects/OOP_BankAccountManager/BankAccountManager/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_BankAccountManager/BankAccountManager/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Sample_Projects/OOP_BankAccountManager/BankAccountManager/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample_Projects/OOP_BankAccountManager/BankAccountManager/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample_Projects/OOP_BankAccountManager/BankAccountManager/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_CarParkingSystem/CarParkingSystem.sln -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/App.config -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/CarParkingSystem.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/CarParkingSystem.csproj -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/Form1.Designer.cs -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/Form1.cs -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/Form1.resx -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/Program.cs -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/Properties/Resources.resx -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/Properties/Settings.settings -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/Report.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/Report.Designer.cs -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/Report.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/Report.cs -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/Report.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/Report.resx -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/Vehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/Vehicle.cs -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/VehicleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/VehicleType.cs -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/bin/Debug/CarParkingSystem.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/bin/Debug/CarParkingSystem.exe -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/bin/Debug/CarParkingSystem.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/bin/Debug/CarParkingSystem.exe.config -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/bin/Debug/CarParkingSystem.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/bin/Debug/CarParkingSystem.pdb -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/obj/Debug/CarParkingSystem.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/obj/Debug/CarParkingSystem.Form1.resources -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/obj/Debug/CarParkingSystem.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/obj/Debug/CarParkingSystem.Properties.Resources.resources -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/obj/Debug/CarParkingSystem.Report.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/obj/Debug/CarParkingSystem.Report.resources -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/obj/Debug/CarParkingSystem.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/obj/Debug/CarParkingSystem.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/obj/Debug/CarParkingSystem.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/obj/Debug/CarParkingSystem.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/obj/Debug/CarParkingSystem.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/obj/Debug/CarParkingSystem.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/obj/Debug/CarParkingSystem.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/obj/Debug/CarParkingSystem.exe -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/obj/Debug/CarParkingSystem.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/obj/Debug/CarParkingSystem.pdb -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/obj/Debug/CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | f30e1446dc01e0fbd949cd5ce5e2673af18fd576 2 | -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falaybeg/ObjectOrientedProgramming-OOP-Examples/HEAD/Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample_Projects/OOP_CarParkingSystem/CarParkingSystem/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------