|
// <auto-generated>
using System.Reflection;
namespace Microsoft.CodeAnalysis.CSharp
{
internal static partial class CSharpAnalyzersResources
{
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(CSharpAnalyzersResources)));
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>Convert switch statement to expression</summary>
internal static string @Convert_switch_statement_to_expression => GetResourceString("Convert_switch_statement_to_expression");
/// <summary>Use 'switch' expression</summary>
internal static string @Use_switch_expression => GetResourceString("Use_switch_expression");
/// <summary>Use explicit type instead of 'var'</summary>
internal static string @Use_explicit_type_instead_of_var => GetResourceString("Use_explicit_type_instead_of_var");
/// <summary>Use explicit type</summary>
internal static string @Use_explicit_type => GetResourceString("Use_explicit_type");
/// <summary>use 'var' instead of explicit type</summary>
internal static string @use_var_instead_of_explicit_type => GetResourceString("use_var_instead_of_explicit_type");
/// <summary>Use implicit type</summary>
internal static string @Use_implicit_type => GetResourceString("Use_implicit_type");
/// <summary>Using directive is unnecessary.</summary>
internal static string @Using_directive_is_unnecessary => GetResourceString("Using_directive_is_unnecessary");
/// <summary>Add braces</summary>
internal static string @Add_braces => GetResourceString("Add_braces");
/// <summary>Add braces to '{0}' statement.</summary>
internal static string @Add_braces_to_0_statement => GetResourceString("Add_braces_to_0_statement");
/// <summary>Misplaced using directive</summary>
internal static string @Misplaced_using_directive => GetResourceString("Misplaced_using_directive");
/// <summary>Move misplaced using directives</summary>
internal static string @Move_misplaced_using_directives => GetResourceString("Move_misplaced_using_directives");
/// <summary>Using directives must be placed inside of a namespace declaration</summary>
internal static string @Using_directives_must_be_placed_inside_of_a_namespace_declaration => GetResourceString("Using_directives_must_be_placed_inside_of_a_namespace_declaration");
/// <summary>Using directives must be placed outside of a namespace declaration</summary>
internal static string @Using_directives_must_be_placed_outside_of_a_namespace_declaration => GetResourceString("Using_directives_must_be_placed_outside_of_a_namespace_declaration");
/// <summary>Warning: Moving using directives may change code meaning.</summary>
internal static string @Warning_colon_Moving_using_directives_may_change_code_meaning => GetResourceString("Warning_colon_Moving_using_directives_may_change_code_meaning");
/// <summary>Use expression body for method</summary>
internal static string @Use_expression_body_for_method => GetResourceString("Use_expression_body_for_method");
/// <summary>Use block body for method</summary>
internal static string @Use_block_body_for_method => GetResourceString("Use_block_body_for_method");
/// <summary>Use block body for accessor</summary>
internal static string @Use_block_body_for_accessor => GetResourceString("Use_block_body_for_accessor");
/// <summary>Use block body for constructor</summary>
internal static string @Use_block_body_for_constructor => GetResourceString("Use_block_body_for_constructor");
/// <summary>Use block body for indexer</summary>
internal static string @Use_block_body_for_indexer => GetResourceString("Use_block_body_for_indexer");
/// <summary>Use block body for operator</summary>
internal static string @Use_block_body_for_operator => GetResourceString("Use_block_body_for_operator");
/// <summary>Use block body for conversion operator</summary>
internal static string @Use_block_body_for_conversion_operator => GetResourceString("Use_block_body_for_conversion_operator");
/// <summary>Use block body for property</summary>
internal static string @Use_block_body_for_property => GetResourceString("Use_block_body_for_property");
/// <summary>Use expression body for accessor</summary>
internal static string @Use_expression_body_for_accessor => GetResourceString("Use_expression_body_for_accessor");
/// <summary>Use expression body for constructor</summary>
internal static string @Use_expression_body_for_constructor => GetResourceString("Use_expression_body_for_constructor");
/// <summary>Use expression body for indexer</summary>
internal static string @Use_expression_body_for_indexer => GetResourceString("Use_expression_body_for_indexer");
/// <summary>Use expression body for operator</summary>
internal static string @Use_expression_body_for_operator => GetResourceString("Use_expression_body_for_operator");
/// <summary>Use expression body for conversion operator</summary>
internal static string @Use_expression_body_for_conversion_operator => GetResourceString("Use_expression_body_for_conversion_operator");
/// <summary>Use expression body for property</summary>
internal static string @Use_expression_body_for_property => GetResourceString("Use_expression_body_for_property");
/// <summary>Use block body for local function</summary>
internal static string @Use_block_body_for_local_function => GetResourceString("Use_block_body_for_local_function");
/// <summary>Use expression body for local function</summary>
internal static string @Use_expression_body_for_local_function => GetResourceString("Use_expression_body_for_local_function");
/// <summary>Unreachable code detected</summary>
internal static string @Unreachable_code_detected => GetResourceString("Unreachable_code_detected");
/// <summary>Use pattern matching</summary>
internal static string @Use_pattern_matching => GetResourceString("Use_pattern_matching");
/// <summary>Use 'is null' check</summary>
internal static string @Use_is_null_check => GetResourceString("Use_is_null_check");
/// <summary>Prefer 'null' check over type check</summary>
internal static string @Prefer_null_check_over_type_check => GetResourceString("Prefer_null_check_over_type_check");
/// <summary>Use simple 'using' statement</summary>
internal static string @Use_simple_using_statement => GetResourceString("Use_simple_using_statement");
/// <summary>'using' statement can be simplified</summary>
internal static string @using_statement_can_be_simplified => GetResourceString("using_statement_can_be_simplified");
/// <summary>'if' statement can be simplified</summary>
internal static string @if_statement_can_be_simplified => GetResourceString("if_statement_can_be_simplified");
/// <summary>Simplify 'default' expression</summary>
internal static string @Simplify_default_expression => GetResourceString("Simplify_default_expression");
/// <summary>'default' expression can be simplified</summary>
internal static string @default_expression_can_be_simplified => GetResourceString("default_expression_can_be_simplified");
/// <summary>Make readonly fields writable</summary>
internal static string @Make_readonly_fields_writable => GetResourceString("Make_readonly_fields_writable");
/// <summary>Struct contains assignment to 'this' outside of constructor. Make readonly fields writable.</summary>
internal static string @Struct_contains_assignment_to_this_outside_of_constructor_Make_readonly_fields_writable => GetResourceString("Struct_contains_assignment_to_this_outside_of_constructor_Make_readonly_fields_writable");
/// <summary>Deconstruct variable declaration</summary>
internal static string @Deconstruct_variable_declaration => GetResourceString("Deconstruct_variable_declaration");
/// <summary>Variable declaration can be deconstructed</summary>
internal static string @Variable_declaration_can_be_deconstructed => GetResourceString("Variable_declaration_can_be_deconstructed");
/// <summary>Local function can be made static</summary>
internal static string @Local_function_can_be_made_static => GetResourceString("Local_function_can_be_made_static");
/// <summary>Make local function 'static'</summary>
internal static string @Make_local_function_static => GetResourceString("Make_local_function_static");
/// <summary>{0} can be simplified</summary>
internal static string @_0_can_be_simplified => GetResourceString("_0_can_be_simplified");
/// <summary>Indexing can be simplified</summary>
internal static string @Indexing_can_be_simplified => GetResourceString("Indexing_can_be_simplified");
/// <summary>Use local function</summary>
internal static string @Use_local_function => GetResourceString("Use_local_function");
/// <summary>Use index operator</summary>
internal static string @Use_index_operator => GetResourceString("Use_index_operator");
/// <summary>Use range operator</summary>
internal static string @Use_range_operator => GetResourceString("Use_range_operator");
/// <summary>Delegate invocation can be simplified.</summary>
internal static string @Delegate_invocation_can_be_simplified => GetResourceString("Delegate_invocation_can_be_simplified");
/// <summary>Inline variable declaration</summary>
internal static string @Inline_variable_declaration => GetResourceString("Inline_variable_declaration");
/// <summary>Variable declaration can be inlined</summary>
internal static string @Variable_declaration_can_be_inlined => GetResourceString("Variable_declaration_can_be_inlined");
/// <summary>Negate expression (changes semantics)</summary>
internal static string @Negate_expression_changes_semantics => GetResourceString("Negate_expression_changes_semantics");
/// <summary>Remove operator (preserves semantics)</summary>
internal static string @Remove_operator_preserves_semantics => GetResourceString("Remove_operator_preserves_semantics");
/// <summary>Remove unnecessary suppression operator</summary>
internal static string @Remove_unnecessary_suppression_operator => GetResourceString("Remove_unnecessary_suppression_operator");
/// <summary>Suppression operator has no effect and can be misinterpreted</summary>
internal static string @Suppression_operator_has_no_effect_and_can_be_misinterpreted => GetResourceString("Suppression_operator_has_no_effect_and_can_be_misinterpreted");
/// <summary>'typeof' can be converted to 'nameof'</summary>
internal static string @typeof_can_be_converted_to_nameof => GetResourceString("typeof_can_be_converted_to_nameof");
/// <summary>Use 'new(...)'</summary>
internal static string @Use_new => GetResourceString("Use_new");
/// <summary>'new' expression can be simplified</summary>
internal static string @new_expression_can_be_simplified => GetResourceString("new_expression_can_be_simplified");
/// <summary>Discard can be removed</summary>
internal static string @Discard_can_be_removed => GetResourceString("Discard_can_be_removed");
/// <summary>Remove unnecessary discard</summary>
internal static string @Remove_unnessary_discard => GetResourceString("Remove_unnessary_discard");
/// <summary>Embedded statements must be on their own line</summary>
internal static string @Embedded_statements_must_be_on_their_own_line => GetResourceString("Embedded_statements_must_be_on_their_own_line");
/// <summary>Consecutive braces must not have blank line between them</summary>
internal static string @Consecutive_braces_must_not_have_a_blank_between_them => GetResourceString("Consecutive_braces_must_not_have_a_blank_between_them");
/// <summary>Blank line not allowed after constructor initializer colon</summary>
internal static string @Blank_line_not_allowed_after_constructor_initializer_colon => GetResourceString("Blank_line_not_allowed_after_constructor_initializer_colon");
/// <summary>Null check can be clarified</summary>
internal static string @Null_check_can_be_clarified => GetResourceString("Null_check_can_be_clarified");
/// <summary>Convert to file-scoped namespace</summary>
internal static string @Convert_to_file_scoped_namespace => GetResourceString("Convert_to_file_scoped_namespace");
/// <summary>Convert to block scoped namespace</summary>
internal static string @Convert_to_block_scoped_namespace => GetResourceString("Convert_to_block_scoped_namespace");
/// <summary>Use pattern matching (may change code meaning)</summary>
internal static string @Use_pattern_matching_may_change_code_meaning => GetResourceString("Use_pattern_matching_may_change_code_meaning");
/// <summary>Property pattern can be simplified</summary>
internal static string @Property_pattern_can_be_simplified => GetResourceString("Property_pattern_can_be_simplified");
/// <summary>Simplify property pattern</summary>
internal static string @Simplify_property_pattern => GetResourceString("Simplify_property_pattern");
/// <summary>Use tuple to swap values</summary>
internal static string @Use_tuple_to_swap_values => GetResourceString("Use_tuple_to_swap_values");
/// <summary>Lambda expression can be removed</summary>
internal static string @Lambda_expression_can_be_removed => GetResourceString("Lambda_expression_can_be_removed");
/// <summary>Remove unnecessary lambda expression</summary>
internal static string @Remove_unnecessary_lambda_expression => GetResourceString("Remove_unnecessary_lambda_expression");
/// <summary>Simplify delegate invocation</summary>
internal static string @Simplify_delegate_invocation => GetResourceString("Simplify_delegate_invocation");
/// <summary>Use 'is not null' check</summary>
internal static string @Use_is_not_null_check => GetResourceString("Use_is_not_null_check");
/// <summary>Use 'is object' check</summary>
internal static string @Use_is_object_check => GetResourceString("Use_is_object_check");
/// <summary>Convert to 'Program.Main' style program</summary>
internal static string @Convert_to_Program_Main_style_program => GetResourceString("Convert_to_Program_Main_style_program");
/// <summary>Convert to top-level statements</summary>
internal static string @Convert_to_top_level_statements => GetResourceString("Convert_to_top_level_statements");
/// <summary>Use UTF-8 string literal</summary>
internal static string @Use_Utf8_string_literal => GetResourceString("Use_Utf8_string_literal");
/// <summary>Nullable directive is unnecessary</summary>
internal static string @Nullable_directive_is_unnecessary => GetResourceString("Nullable_directive_is_unnecessary");
/// <summary>Remove unnecessary nullable directive</summary>
internal static string @Remove_unnecessary_nullable_directive => GetResourceString("Remove_unnecessary_nullable_directive");
/// <summary>Nullable directive is redundant</summary>
internal static string @Nullable_directive_is_redundant => GetResourceString("Nullable_directive_is_redundant");
/// <summary>Remove redundant nullable directive</summary>
internal static string @Remove_redundant_nullable_directive => GetResourceString("Remove_redundant_nullable_directive");
/// <summary>Use expression body for lambda expression</summary>
internal static string @Use_expression_body_for_lambda_expression => GetResourceString("Use_expression_body_for_lambda_expression");
/// <summary>Use block body for lambda expression</summary>
internal static string @Use_block_body_for_lambda_expression => GetResourceString("Use_block_body_for_lambda_expression");
/// <summary>Make struct 'readonly'</summary>
internal static string @Make_struct_readonly => GetResourceString("Make_struct_readonly");
/// <summary>Struct can be made 'readonly'</summary>
internal static string @Struct_can_be_made_readonly => GetResourceString("Struct_can_be_made_readonly");
/// <summary>Blank line not allowed after conditional expression token</summary>
internal static string @Blank_line_not_allowed_after_conditional_expression_token => GetResourceString("Blank_line_not_allowed_after_conditional_expression_token");
/// <summary>Blank line not allowed after arrow expression clause token</summary>
internal static string @Blank_line_not_allowed_after_arrow_expression_clause_token => GetResourceString("Blank_line_not_allowed_after_arrow_expression_clause_token");
/// <summary>Use 'nameof'</summary>
internal static string @Use_nameof => GetResourceString("Use_nameof");
/// <summary>Make member 'readonly'</summary>
internal static string @Make_member_readonly => GetResourceString("Make_member_readonly");
/// <summary>Member can be made 'readonly'</summary>
internal static string @Member_can_be_made_readonly => GetResourceString("Member_can_be_made_readonly");
/// <summary>Use primary constructor</summary>
internal static string @Use_primary_constructor => GetResourceString("Use_primary_constructor");
/// <summary>Anonymous function can be made static</summary>
internal static string @Anonymous_function_can_be_made_static => GetResourceString("Anonymous_function_can_be_made_static");
/// <summary>Make anonymous function static</summary>
internal static string @Make_anonymous_function_static => GetResourceString("Make_anonymous_function_static");
/// <summary>Use 'System.Threading.Lock'</summary>
internal static string @Use_System_Threading_Lock => GetResourceString("Use_System_Threading_Lock");
}
}
|