This shows the guidelines which should be followed when adding to this repository.
- Use the namespace
CSharp_Code_Examples - Each class should have a
public staticmethod calledrun(). - The method should be preceded by two single line comments:
One which says//Authors:which should be completed with your name
One which describes very briefly what the code does:
eg://Reads all of the text from a textfile into a string - The
Program.csfile should be able to run the code example directly, eg:HelloLincoln.run();. Do not modify this file in the repository.