This solution contains three projects: UnitTestExamples, VisualNavExamples and xamlExamples.
HelloWorldTemplate.cs contains four examples:
- Printing "Hello World":
- Building a FizzBuzz function:
(FizzBuzz is a group word game for kids to learn about division Players take turns counting progressively, substituting any number divisible by three with "fizz" and any number divisible by five with "buzz." )
- Integrating another library using a custom function:
- Creating a thread in C#:
Set this project as the startup project and click 'Start' to see the result
UnitTestTemplate.cs contains one example:
- Create unit test in c#
Right click this project and choose 'Run Test' to see the result
xamlTemplate.cs contains examples to create WPF elements in the panel:
- create Button
- create Grid
- create ListBox
- create TextBox
- create Label




