This project demonstrates working with arrays in C# by implementing:
- Integer arrays with random number generation, duplicate checks, and display in normal and reverse order.
- String arrays that split input into words, handle punctuation, and display in both orders.
Program.csβ Main entry point.intArray.csβ Handles integer array logic.StringArray.csβ Handles string array logic.UserCommunications.csβ User input/output helper.GenerateInputs.csβ Random integer generator.FindDups.csβ Duplicate-checking utility.