Task 3: Start Coding
According to the tests we just ran, we expected the string Hello, World!
to be printed. Edit the code in the SayHelloClass
class, within the SayHello()
method to reflect this. Verify your code with the auto-grading tests.
The auto-grading tests are VERY exacting. A difference of a single character will result in a failed test. The tests are also case-sensitive. You’ll need to pay attention to detail to correctly complete your assignments.
Recommended Resources for Debugging Code in Visual Studio
Visual Studio has a built-in Debugger feature to help you troubleshoot your code. We will explore it more in later chapters. However, if you want to read through the guides and try things out early, you may find that this is a wonderful tool and skill-set to develop.
- How to debug for absolute beginners
- Windows Users: Tutorial: Learn to debug C# code using Visual Studio
- Mac Uses: Debugging with Visual Studio for Mac
You are now ready to move on to Task 4: Submitting Your Code .