-
Notifications
You must be signed in to change notification settings - Fork 144
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Leaner console code suggestion #34
Comments
1. Easier To Port Code To Website If "Console" ExistsI actually had I want to eventually make a code generator that will automatically port the code to the website #23 but I haven't had time to tackle that project yet. 2. Alternatives To
|
Ah, OK - that makes sense then. Thanks for taking the time to explain. 👍 |
I'll close this issue for now. Feel free to reopen if you feel strongly about it. If anyone contributes a game that has And just to clarify, we may add |
If your code makes heavy use of the Console class (which I suspect will be most games here, if not all), you can make method calls a little leaner by including:
using static System.Console;
This would reduce code like this:
To:
The text was updated successfully, but these errors were encountered: