Last active
August 11, 2016 13:31
-
-
Save dominik-hadl/ee983e66eaf56a4e2166ffdada583368 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Quiz { | |
private static int pointsValue = 500; | |
void PrintPointsValue() { | |
Console.WriteLine("This quiz question is worth " + pointsValue); | |
} | |
} | |
Quiz q = new Quiz(); | |
q.PrintPointsValue(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment