C# Development
I took two development courses in C#. These served as an introduction to me for my first exposure to any type of programming or development. It was here that I learned that basics of programming and object oriented concepts.
We built a series of programs that built off one another. They started as command line output and over the courses went to more complex, GUI based programs.
Below are links to my programs:
- Program 0
- Program 1
- Program 2
- Program 3
- Program 4
Uses polymorphism and class heirarchy to output three letters. These letters consist of origin and destination addresses (name, address, city, state, zip) as well as fixed costs. This program has an "address" at the bottom of the hierarchy, followed by an abstract class: a "parcel", and a derived class: a "letter."
Takes user entered data and performs calculations, then displays information to help a painting business keep track of things.
Relays to a GUI form that directs the user to a series of menu items where the user can display a list of addresses and parcels, create new addresses and parcels, as well as view info about the program
Builds on Program 2 with the added functionality to read in and display addresses from a file. After imported, user can now edit or add more addresses, and save to a file.
Builds off an earlier program to create and define a custom IComparable interface. Created a custom IComparable to sort by cost, by zip code. Also created a test class to test our IComparable classes.