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
Records should format the same as classes. This is how a record currently formats.
public class AddResultParameter { public Guid ActionRequestId { get; set; } public string Name { get; set; } = string.Empty; public string Value { get; set; } = string.Empty; } // vs public record AddResultParameter { public Guid ActionRequestId { get; set; } public string Name { get; set; } = string.Empty; public string Value { get; set; } = string.Empty; }
The text was updated successfully, but these errors were encountered:
Format record braces consistently with class
e27f84d
closes #233
Format record braces consistently with class (#313)
4c179a1
* Format record braces consistently with class closes #233 * introduce variable to make code easier to understand
belav
Successfully merging a pull request may close this issue.
Records should format the same as classes. This is how a record currently formats.
The text was updated successfully, but these errors were encountered: