Baseball and Shirt Solution Exercises

Baseball Players – 9 Baseball Players Create an application named BaseballPlayer that instantiates and displays a BaseballPlayer object. The BaseballPlayer class contains properties that hold a player’s name (a string), jersey number (an integer), runs scored (an integer), and position (a string). T-Shirt Demo – min of 5 different shirts Create an application named ShirtDemo […]

Hands-On Project 5-2: Build a Filter for Your Own Traffic

Objective: Use a custom capture filter on Wireshark to observe only traffic involving a local host. Description: In this project, you build a custom filter for your own traffic. Open a command prompt window. (Use the Start menu search box or the Search box on the task bar. Type cmd and then press Enter.) Start […]

Chapter 5 – Study Outline

ICMP Basics – pg 250 – general info Roles ICMP Plays on IP Network  pg 251 – general info – know basics of Table 5-1 ICMPv4 pg 251 – general info ICMPv4 Header pg 252 – Type, code, checksum fields – general info on each Types of ICMPv4 Messages pg 256 – Destination Unreachable – […]

Property Tax Console App

[code language=”csharp”] using System; using static System.Console; /// <summary> /// # # # # # # # # # /// # Mark Hesser # /// # Feb 10, 18 # /// # Property Tax # /// # # # # # # # # # # # # # # # # # # # […]

Class Methods, Properties and Constructor Methods

The purpose for creating a special class to represent data is to contain all of the other data that’s associated with it. A field is a variable that belongs to the class. It’s sometimes called an instance field. Classes have both static fields and instance fields. A static field belongs to the class definition while […]