You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ArgumentPropertiesHelper and ValidationHelper can easily be static, but they aren't. Making them static reduces GC load and calling static methods is cheaper, so we should make them static.
Because these classes are internal, it doesn't change the external API so no major or minor release is needed for this.
The text was updated successfully, but these errors were encountered:
AtleX.CommandLineArguments/src/AtleX.CommandLineArguments/Parsers/Helpers/ArgumentPropertiesHelper.cs
Line 11 in e10246d
AtleX.CommandLineArguments/src/AtleX.CommandLineArguments/Parsers/Helpers/ValidationHelper.cs
Line 12 in e10246d
The
ArgumentPropertiesHelper
andValidationHelper
can easily be static, but they aren't. Making them static reduces GC load and calling static methods is cheaper, so we should make them static.Because these classes are internal, it doesn't change the external API so no major or minor release is needed for this.
The text was updated successfully, but these errors were encountered: