We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
File: Program.cs Problem:
All properties of the Something class are public, which allows you to change them directly.
Guid.NewGuid().ToString("N") is generated in the constructor, but there is no guarantee that the Id will not change after initialization.
DateTime.Now in Date creates a variable that changes on each new instance, which can be undesirable behavior.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
File: Program.cs
Problem:
All properties of the Something class are public, which allows you to change them directly.
Guid.NewGuid().ToString("N") is generated in the constructor, but there is no guarantee that the Id will not change after initialization.
DateTime.Now in Date creates a variable that changes on each new instance, which can be undesirable behavior.
The text was updated successfully, but these errors were encountered: