File: Microsoft.CodeAnalysis.AnalyzersResources.cs
Project: ..\..\..\src\CodeStyle\Core\Analyzers\Microsoft.CodeAnalysis.CodeStyle.csproj (Microsoft.CodeAnalysis.CodeStyle)
// <auto-generated>
using System.Reflection;
 
 
namespace Microsoft.CodeAnalysis
{
    internal static partial class AnalyzersResources
    {
        private static global::System.Resources.ResourceManager s_resourceManager;
        internal static global::System.Resources.ResourceManager ResourceManager => s_resourceManager ?? (s_resourceManager = new global::System.Resources.ResourceManager(typeof(AnalyzersResources)));
        internal static global::System.Globalization.CultureInfo Culture { get; set; }
#if !NET20
        [global::System.Runtime.CompilerServices.MethodImpl(global::System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]
#endif
        internal static string GetResourceString(string resourceKey, string defaultValue = null) =>  ResourceManager.GetString(resourceKey, Culture);
        /// <summary>Remove Unnecessary Cast</summary>
        internal static string @Remove_Unnecessary_Cast => GetResourceString("Remove_Unnecessary_Cast");
        /// <summary>Remove unused member</summary>
        internal static string @Remove_unused_member => GetResourceString("Remove_unused_member");
        /// <summary>Private member '{0}' is unused</summary>
        internal static string @Private_member_0_is_unused => GetResourceString("Private_member_0_is_unused");
        /// <summary>Remove unused private members</summary>
        internal static string @Remove_unused_private_members => GetResourceString("Remove_unused_private_members");
        /// <summary>Remove unread private members</summary>
        internal static string @Remove_unread_private_members => GetResourceString("Remove_unread_private_members");
        /// <summary>Private member '{0}' can be removed as the value assigned to it is never read</summary>
        internal static string @Private_member_0_can_be_removed_as_the_value_assigned_to_it_is_never_read => GetResourceString("Private_member_0_can_be_removed_as_the_value_assigned_to_it_is_never_read");
        /// <summary>Private method '{0}' can be removed as it is never invoked.</summary>
        internal static string @Private_method_0_can_be_removed_as_it_is_never_invoked => GetResourceString("Private_method_0_can_be_removed_as_it_is_never_invoked");
        /// <summary>Private property '{0}' can be converted to a method as its get accessor is never invoked.</summary>
        internal static string @Private_property_0_can_be_converted_to_a_method_as_its_get_accessor_is_never_invoked => GetResourceString("Private_property_0_can_be_converted_to_a_method_as_its_get_accessor_is_never_invoked");
        /// <summary>A source file is missing a required header.</summary>
        internal static string @A_source_file_is_missing_a_required_header => GetResourceString("A_source_file_is_missing_a_required_header");
        /// <summary>The file header is missing or not located at the top of the file</summary>
        internal static string @The_file_header_is_missing_or_not_located_at_the_top_of_the_file => GetResourceString("The_file_header_is_missing_or_not_located_at_the_top_of_the_file");
        /// <summary>A source file contains a header that does not match the required text</summary>
        internal static string @A_source_file_contains_a_header_that_does_not_match_the_required_text => GetResourceString("A_source_file_contains_a_header_that_does_not_match_the_required_text");
        /// <summary>The file header does not match the required text</summary>
        internal static string @The_file_header_does_not_match_the_required_text => GetResourceString("The_file_header_does_not_match_the_required_text");
        /// <summary>Use 'throw' expression</summary>
        internal static string @Use_throw_expression => GetResourceString("Use_throw_expression");
        /// <summary>Add 'this' or 'Me' qualification</summary>
        internal static string @Add_this_or_Me_qualification => GetResourceString("Add_this_or_Me_qualification");
        /// <summary>Member access should be qualified.</summary>
        internal static string @Member_access_should_be_qualified => GetResourceString("Member_access_should_be_qualified");
        /// <summary>Null check can be simplified</summary>
        internal static string @Null_check_can_be_simplified => GetResourceString("Null_check_can_be_simplified");
        /// <summary>Simplify collection initialization</summary>
        internal static string @Simplify_collection_initialization => GetResourceString("Simplify_collection_initialization");
        /// <summary>Collection initialization can be simplified</summary>
        internal static string @Collection_initialization_can_be_simplified => GetResourceString("Collection_initialization_can_be_simplified");
        /// <summary>Simplify object initialization</summary>
        internal static string @Simplify_object_initialization => GetResourceString("Simplify_object_initialization");
        /// <summary>Object initialization can be simplified</summary>
        internal static string @Object_initialization_can_be_simplified => GetResourceString("Object_initialization_can_be_simplified");
        /// <summary>Add readonly modifier</summary>
        internal static string @Add_readonly_modifier => GetResourceString("Add_readonly_modifier");
        /// <summary>Make field readonly</summary>
        internal static string @Make_field_readonly => GetResourceString("Make_field_readonly");
        /// <summary>Naming rule violation: {0}</summary>
        internal static string @Naming_rule_violation_0 => GetResourceString("Naming_rule_violation_0");
        /// <summary>Naming Styles</summary>
        internal static string @Naming_Styles => GetResourceString("Naming_Styles");
        /// <summary>Add missing cases</summary>
        internal static string @Add_missing_cases => GetResourceString("Add_missing_cases");
        /// <summary>Populate switch</summary>
        internal static string @Populate_switch => GetResourceString("Populate_switch");
        /// <summary>Modifiers are not ordered</summary>
        internal static string @Modifiers_are_not_ordered => GetResourceString("Modifiers_are_not_ordered");
        /// <summary>Order modifiers</summary>
        internal static string @Order_modifiers => GetResourceString("Order_modifiers");
        /// <summary>Expression value is never used</summary>
        internal static string @Expression_value_is_never_used => GetResourceString("Expression_value_is_never_used");
        /// <summary>Unnecessary assignment of a value to '{0}'</summary>
        internal static string @Unnecessary_assignment_of_a_value_to_0 => GetResourceString("Unnecessary_assignment_of_a_value_to_0");
        /// <summary>Unnecessary assignment of a value</summary>
        internal static string @Unnecessary_assignment_of_a_value => GetResourceString("Unnecessary_assignment_of_a_value");
        /// <summary>Avoid unnecessary value assignments in your code, as these likely indicate redundant value computations. If the value computation is not redundant and you intend to retain the assignment, then change the assignment target to a local variable whose name sta ...</summary>
        internal static string @Avoid_unnecessary_value_assignments_in_your_code_as_these_likely_indicate_redundant_value_computations_If_the_value_computation_is_not_redundant_and_you_intend_to_retain_the_assignmentcomma_then_change_the_assignment_target_to_a_local_variable_whose_name_starts_with_an_underscore_and_is_optionally_followed_by_an_integercomma_such_as___comma__1_comma__2_comma_etc => GetResourceString("Avoid_unnecessary_value_assignments_in_your_code_as_these_likely_indicate_redundant_value_computations_If_the_value_computation_is_not_redundant_and_you_intend_to_retain_the_assignmentcomma_then_change_the_assignment_target_to_a_local_variable_whose_name_starts_with_an_underscore_and_is_optionally_followed_by_an_integercomma_such_as___comma__1_comma__2_comma_etc");
        /// <summary>Remove unused parameter</summary>
        internal static string @Remove_unused_parameter => GetResourceString("Remove_unused_parameter");
        /// <summary>Remove unused parameter '{0}'</summary>
        internal static string @Remove_unused_parameter_0 => GetResourceString("Remove_unused_parameter_0");
        /// <summary>Avoid unused parameters in your code. If the parameter cannot be removed, then change its name so it starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</summary>
        internal static string @Avoid_unused_parameters_in_your_code_If_the_parameter_cannot_be_removed_then_change_its_name_so_it_starts_with_an_underscore_and_is_optionally_followed_by_an_integer_such_as__comma__1_comma__2_etc_These_are_treated_as_special_discard_symbol_names => GetResourceString("Avoid_unused_parameters_in_your_code_If_the_parameter_cannot_be_removed_then_change_its_name_so_it_starts_with_an_underscore_and_is_optionally_followed_by_an_integer_such_as__comma__1_comma__2_etc_These_are_treated_as_special_discard_symbol_names");
        /// <summary>Remove unused parameter '{0}' if it is not part of a shipped public API</summary>
        internal static string @Remove_unused_parameter_0_if_it_is_not_part_of_a_shipped_public_API => GetResourceString("Remove_unused_parameter_0_if_it_is_not_part_of_a_shipped_public_API");
        /// <summary>Parameter '{0}' can be removed if it is not part of a shipped public API; its initial value is never used</summary>
        internal static string @Parameter_0_can_be_removed_if_it_is_not_part_of_a_shipped_public_API_its_initial_value_is_never_used => GetResourceString("Parameter_0_can_be_removed_if_it_is_not_part_of_a_shipped_public_API_its_initial_value_is_never_used");
        /// <summary>Parameter '{0}' can be removed; its initial value is never used</summary>
        internal static string @Parameter_0_can_be_removed_its_initial_value_is_never_used => GetResourceString("Parameter_0_can_be_removed_its_initial_value_is_never_used");
        /// <summary>Add accessibility modifiers</summary>
        internal static string @Add_accessibility_modifiers => GetResourceString("Add_accessibility_modifiers");
        /// <summary>Accessibility modifiers required</summary>
        internal static string @Accessibility_modifiers_required => GetResourceString("Accessibility_modifiers_required");
        /// <summary>Convert to conditional expression</summary>
        internal static string @Convert_to_conditional_expression => GetResourceString("Convert_to_conditional_expression");
        /// <summary>Use coalesce expression</summary>
        internal static string @Use_coalesce_expression => GetResourceString("Use_coalesce_expression");
        /// <summary>Changes to expression trees may result in behavior changes at runtime</summary>
        internal static string @Changes_to_expression_trees_may_result_in_behavior_changes_at_runtime => GetResourceString("Changes_to_expression_trees_may_result_in_behavior_changes_at_runtime");
        /// <summary>Parentheses can be removed</summary>
        internal static string @Parentheses_can_be_removed => GetResourceString("Parentheses_can_be_removed");
        /// <summary>Remove unnecessary parentheses</summary>
        internal static string @Remove_unnecessary_parentheses => GetResourceString("Remove_unnecessary_parentheses");
        /// <summary>Add parentheses for clarity</summary>
        internal static string @Add_parentheses_for_clarity => GetResourceString("Add_parentheses_for_clarity");
        /// <summary>Parentheses should be added for clarity</summary>
        internal static string @Parentheses_should_be_added_for_clarity => GetResourceString("Parentheses_should_be_added_for_clarity");
        /// <summary>Prefer explicitly provided tuple element name</summary>
        internal static string @Prefer_explicitly_provided_tuple_element_name => GetResourceString("Prefer_explicitly_provided_tuple_element_name");
        /// <summary>Use explicitly provided tuple name</summary>
        internal static string @Use_explicitly_provided_tuple_name => GetResourceString("Use_explicitly_provided_tuple_name");
        /// <summary>Use 'System.HashCode'</summary>
        internal static string @Use_System_HashCode => GetResourceString("Use_System_HashCode");
        /// <summary>'GetHashCode' implementation can be simplified</summary>
        internal static string @GetHashCode_implementation_can_be_simplified => GetResourceString("GetHashCode_implementation_can_be_simplified");
        /// <summary>Use compound assignment</summary>
        internal static string @Use_compound_assignment => GetResourceString("Use_compound_assignment");
        /// <summary>Use null propagation</summary>
        internal static string @Use_null_propagation => GetResourceString("Use_null_propagation");
        /// <summary>Use inferred member name</summary>
        internal static string @Use_inferred_member_name => GetResourceString("Use_inferred_member_name");
        /// <summary>Member name can be simplified</summary>
        internal static string @Member_name_can_be_simplified => GetResourceString("Member_name_can_be_simplified");
        /// <summary>Interpolation can be simplified</summary>
        internal static string @Interpolation_can_be_simplified => GetResourceString("Interpolation_can_be_simplified");
        /// <summary>Simplify interpolation</summary>
        internal static string @Simplify_interpolation => GetResourceString("Simplify_interpolation");
        /// <summary>Use auto property</summary>
        internal static string @Use_auto_property => GetResourceString("Use_auto_property");
        /// <summary>Format string contains invalid placeholder</summary>
        internal static string @Format_string_contains_invalid_placeholder => GetResourceString("Format_string_contains_invalid_placeholder");
        /// <summary>Invalid format string</summary>
        internal static string @Invalid_format_string => GetResourceString("Invalid_format_string");
        /// <summary>Simplify conditional expression</summary>
        internal static string @Simplify_conditional_expression => GetResourceString("Simplify_conditional_expression");
        /// <summary>Conditional expression can be simplified</summary>
        internal static string @Conditional_expression_can_be_simplified => GetResourceString("Conditional_expression_can_be_simplified");
        /// <summary>Invalid global 'SuppressMessageAttribute'</summary>
        internal static string @Invalid_global_SuppressMessageAttribute => GetResourceString("Invalid_global_SuppressMessageAttribute");
        /// <summary>Invalid scope for 'SuppressMessageAttribute'</summary>
        internal static string @Invalid_scope_for_SuppressMessageAttribute => GetResourceString("Invalid_scope_for_SuppressMessageAttribute");
        /// <summary>Invalid or missing target for 'SuppressMessageAttribute'</summary>
        internal static string @Invalid_or_missing_target_for_SuppressMessageAttribute => GetResourceString("Invalid_or_missing_target_for_SuppressMessageAttribute");
        /// <summary>Avoid legacy format target in 'SuppressMessageAttribute'</summary>
        internal static string @Avoid_legacy_format_target_in_SuppressMessageAttribute => GetResourceString("Avoid_legacy_format_target_in_SuppressMessageAttribute");
        /// <summary>Avoid legacy format target '{0}' in 'SuppressMessageAttribute'</summary>
        internal static string @Avoid_legacy_format_target_0_in_SuppressMessageAttribute => GetResourceString("Avoid_legacy_format_target_0_in_SuppressMessageAttribute");
        /// <summary>Remove unnecessary suppression</summary>
        internal static string @Remove_unnecessary_suppression => GetResourceString("Remove_unnecessary_suppression");
        /// <summary>Remove redundant equality</summary>
        internal static string @Remove_redundant_equality => GetResourceString("Remove_redundant_equality");
        /// <summary>Use '--' operator</summary>
        internal static string @Use_decrement_operator => GetResourceString("Use_decrement_operator");
        /// <summary>Use '++' operator</summary>
        internal static string @Use_increment_operator => GetResourceString("Use_increment_operator");
        /// <summary>Avoid multiple blank lines</summary>
        internal static string @Avoid_multiple_blank_lines => GetResourceString("Avoid_multiple_blank_lines");
        /// <summary>Blank line required between block and subsequent statement</summary>
        internal static string @Blank_line_required_between_block_and_subsequent_statement => GetResourceString("Blank_line_required_between_block_and_subsequent_statement");
        /// <summary>Change namespace to match folder structure</summary>
        internal static string @Change_namespace_to_match_folder_structure => GetResourceString("Change_namespace_to_match_folder_structure");
        /// <summary>Namespace "{0}" does not match folder structure, expected "{1}"</summary>
        internal static string @Namespace_0_does_not_match_folder_structure_expected_1 => GetResourceString("Namespace_0_does_not_match_folder_structure_expected_1");
        /// <summary>Namespace does not match folder structure</summary>
        internal static string @Namespace_does_not_match_folder_structure => GetResourceString("Namespace_does_not_match_folder_structure");
        /// <summary>Simplify LINQ expression</summary>
        internal static string @Simplify_LINQ_expression => GetResourceString("Simplify_LINQ_expression");
        /// <summary>Fix formatting</summary>
        internal static string @Fix_formatting => GetResourceString("Fix_formatting");
        /// <summary>'{0}' statement implicitly converts '{1}' to '{2}'. Add an explicit cast to make intent clearer, as it may fail at runtime</summary>
        internal static string @_0_statement_implicitly_converts_1_to_2_Add_an_explicit_cast_to_make_intent_clearer_as_it_may_fail_at_runtime => GetResourceString("_0_statement_implicitly_converts_1_to_2_Add_an_explicit_cast_to_make_intent_clearer_as_it_may_fail_at_runtime");
        /// <summary>Add explicit cast</summary>
        internal static string @Add_explicit_cast => GetResourceString("Add_explicit_cast");
        /// <summary>Name can be simplified</summary>
        internal static string @Name_can_be_simplified => GetResourceString("Name_can_be_simplified");
        /// <summary>Simplify Names</summary>
        internal static string @Simplify_Names => GetResourceString("Simplify_Names");
        /// <summary>Simplify Member Access</summary>
        internal static string @Simplify_Member_Access => GetResourceString("Simplify_Member_Access");
        /// <summary>Remove accessibility modifiers</summary>
        internal static string @Remove_accessibility_modifiers => GetResourceString("Remove_accessibility_modifiers");
        /// <summary>Simplify check</summary>
        internal static string @Simplify_check => GetResourceString("Simplify_check");
 
    }
}