This project contains a simple C# application to check if a given sentence is a pangram. A pangram is a sentence that contains every letter of the alphabet at least once.
- Clone the repository to your local machine.
- Open the solution in Visual Studio or your preferred C# IDE.
- Build the solution to restore the necessary packages and compile the code.
- Run the application.
Input: "The quick brown fox jumps over the lazy dog" Output: "The sentence is a pangram."
Input: "Hello World" Output: "The sentence is not a pangram."