This assignment is a deliverable for Code:You's Software Development with C# pathway. In this assignment we were to create simple program that should:
- Initializes and populates an array with a series of values. It can be an array of anything - just make sure it has more than 2 or 3 values.
- Uses a
foreachloop to iterate over those values and display them to the console.
Note: I used this as an opportunity to experiment and get my hands dirty. Included an Entity class to be the data type that the loop stores and iterates over. Still need to read up on what constructors an object should have and class properties
| Tools |
|---|
| .NET SDK |
| VS Code |
| C# Dev Kit VSCode Extension |
- Verify that you have the .NET SDK installed. To do this, run
dotnet --versionin GitBash. If a version number is not returned, you can download the .NET SDK here. - Once you have verified that the .NET SDK is installed, open GitBash and
cdinto the directory of your choice. - Clone this repository by running
git clone https://github.com/dan-collins-dev/Arrays-Console-App.gitin GitBash cdinto the cloned project and open it with VS Code- In VS Code's integrated terminal, run
dotnet buildfollowed bydotnet runto build and run the application.