From fe824ac4cfb846b812931a9f5bd3b6a240140cfa Mon Sep 17 00:00:00 2001 From: Daniel Siepmann Date: Tue, 26 Mar 2024 07:12:00 +0100 Subject: [PATCH] Add csharp --- csharp/.gitignore | 2 + csharp/hello-world/.editorconfig | 141 +++++++++++++++++++++++ csharp/hello-world/.exercism/config.json | 26 +++++ csharp/hello-world/HELP.md | 39 +++++++ csharp/hello-world/HelloWorld.cs | 4 + csharp/hello-world/HelloWorld.csproj | 14 +++ csharp/hello-world/HelloWorldTests.cs | 10 ++ csharp/hello-world/README.md | 36 ++++++ 8 files changed, 272 insertions(+) create mode 100644 csharp/.gitignore create mode 100644 csharp/hello-world/.editorconfig create mode 100644 csharp/hello-world/.exercism/config.json create mode 100644 csharp/hello-world/HELP.md create mode 100644 csharp/hello-world/HelloWorld.cs create mode 100644 csharp/hello-world/HelloWorld.csproj create mode 100644 csharp/hello-world/HelloWorldTests.cs create mode 100644 csharp/hello-world/README.md diff --git a/csharp/.gitignore b/csharp/.gitignore new file mode 100644 index 0000000..659cdfc --- /dev/null +++ b/csharp/.gitignore @@ -0,0 +1,2 @@ +*/bin/ +*/obj/ diff --git a/csharp/hello-world/.editorconfig b/csharp/hello-world/.editorconfig new file mode 100644 index 0000000..5784f1e --- /dev/null +++ b/csharp/hello-world/.editorconfig @@ -0,0 +1,141 @@ +############################### +# Core EditorConfig Options # +############################### + +; This file is for unifying the coding style for different editors and IDEs. +; More information at: +; https://docs.microsoft.com/en-us/visualstudio/ide/editorconfig-code-style-settings-reference?view=vs-2017 +; https://docs.microsoft.com/en-us/visualstudio/ide/create-portable-custom-editor-options?view=vs-2017 + +root = true + +[*] +indent_style = space + +[HelloWorld.cs] +indent_size = 4 + +############################### +# .NET Coding Conventions # +############################### + +# Organize usings +dotnet_sort_system_directives_first = true +dotnet_separate_import_directive_groups = true + +# this. preferences +dotnet_style_qualification_for_field = false:suggestion +dotnet_style_qualification_for_property = false:suggestion +dotnet_style_qualification_for_method = false:suggestion +dotnet_style_qualification_for_event = false:suggestion + +# Language keywords vs BCL types preferences +dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion +dotnet_style_predefined_type_for_member_access = true:suggestion + +# Parentheses preferences +dotnet_style_parentheses_in_arithmetic_binary_operators = never_if_unnecessary:none +dotnet_style_parentheses_in_relational_binary_operators = never_if_unnecessary:none +dotnet_style_parentheses_in_other_binary_operators = never_if_unnecessary:none +dotnet_style_parentheses_in_other_operators = never_if_unnecessary:suggestion + +# Modifier preferences +dotnet_style_require_accessibility_modifiers = always:suggestion +dotnet_style_readonly_field = true:suggestion + +# Expression-level preferences +dotnet_style_object_initializer = true:suggestion +dotnet_style_collection_initializer = true:suggestion +dotnet_style_explicit_tuple_names = true:suggestion +dotnet_style_prefer_inferred_tuple_names = true:suggestion +dotnet_style_prefer_inferred_anonymous_type_member_names = true:suggestion +dotnet_style_prefer_auto_properties = true:suggestion +dotnet_style_prefer_is_null_check_over_reference_equality_method = true:suggestion +dotnet_style_prefer_conditional_expression_over_assignment = true:suggestion +dotnet_style_prefer_conditional_expression_over_return = true:suggestion +dotnet_style_coalesce_expression = true:suggestion +dotnet_style_null_propagation = true:suggestion + +############################### +# Naming Conventions # +############################### + +# Style Definitions +dotnet_naming_style.pascal_case_style.capitalization = pascal_case + +# Use PascalCase for constant fields +dotnet_naming_rule.constant_fields_should_be_pascal_case.severity = suggestion +dotnet_naming_rule.constant_fields_should_be_pascal_case.symbols = constant_fields +dotnet_naming_rule.constant_fields_should_be_pascal_case.style = pascal_case_style +dotnet_naming_symbols.constant_fields.applicable_kinds = field +dotnet_naming_symbols.constant_fields.applicable_accessibilities = * +dotnet_naming_symbols.constant_fields.required_modifiers = const + +############################### +# C# Code Style Rules # +############################### + +# var preferences +csharp_style_var_for_built_in_types = true:none +csharp_style_var_when_type_is_apparent = true:none +csharp_style_var_elsewhere = true:none + +# Expression-bodied members +csharp_style_expression_bodied_methods = true:suggestion +csharp_style_expression_bodied_constructors = true:suggestion +csharp_style_expression_bodied_operators = true:suggestion +csharp_style_expression_bodied_properties = true:suggestion +csharp_style_expression_bodied_indexers = true:suggestion +csharp_style_expression_bodied_accessors = true:suggestion + +# Pattern-matching preferences +csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion +csharp_style_pattern_matching_over_as_with_null_check = true:suggestion + +# Null-checking preferences +csharp_style_throw_expression = true:suggestion +csharp_style_conditional_delegate_call = true:suggestion + +# Modifier preferences +csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async:suggestion + +# Expression-level preferences +csharp_prefer_braces = true:none +csharp_prefer_simple_default_expression = true:suggestion +csharp_style_deconstructed_variable_declaration = true:suggestion +csharp_style_pattern_local_over_anonymous_function = true:suggestion +csharp_style_inlined_variable_declaration = true:suggestion + +############################### +# C# Formatting Rules # +############################### + +# New line preferences +csharp_new_line_before_open_brace = all +csharp_new_line_before_else = true +csharp_new_line_before_catch = true +csharp_new_line_before_finally = true +csharp_new_line_before_members_in_object_initializers = false +csharp_new_line_before_members_in_anonymous_types = false +csharp_new_line_between_query_expression_clauses = true + +# Indentation preferences +csharp_indent_case_contents = true +csharp_indent_switch_labels = true +csharp_indent_labels = flush_left + +# Space preferences +csharp_space_after_cast = false +csharp_space_after_keywords_in_control_flow_statements = true +csharp_space_between_method_declaration_parameter_list_parentheses = false +csharp_space_between_method_call_parameter_list_parentheses = false +csharp_space_before_colon_in_inheritance_clause = true +csharp_space_after_colon_in_inheritance_clause = true +csharp_space_around_binary_operators = before_and_after +csharp_space_between_method_declaration_empty_parameter_list_parentheses = false +csharp_space_between_method_call_name_and_opening_parenthesis = false +csharp_space_between_method_call_empty_parameter_list_parentheses = false + +# Wrapping preferences +csharp_preserve_single_line_blocks = true +csharp_preserve_single_line_statements = true diff --git a/csharp/hello-world/.exercism/config.json b/csharp/hello-world/.exercism/config.json new file mode 100644 index 0000000..4f5c5b4 --- /dev/null +++ b/csharp/hello-world/.exercism/config.json @@ -0,0 +1,26 @@ +{ + "authors": [ + "robkeim" + ], + "contributors": [ + "ErikSchierboom", + "j2jensen" + ], + "files": { + "solution": [ + "HelloWorld.cs" + ], + "test": [ + "HelloWorldTests.cs" + ], + "example": [ + ".meta/Example.cs" + ], + "invalidator": [ + "HelloWorld.csproj" + ] + }, + "blurb": "Exercism's classic introductory exercise. Just say \"Hello, World!\".", + "source": "This is an exercise to introduce users to using Exercism", + "source_url": "https://en.wikipedia.org/wiki/%22Hello,_world!%22_program" +} diff --git a/csharp/hello-world/HELP.md b/csharp/hello-world/HELP.md new file mode 100644 index 0000000..237447c --- /dev/null +++ b/csharp/hello-world/HELP.md @@ -0,0 +1,39 @@ +# Help + +## Running the tests + +You can run the tests by opening a command prompt in the exercise's directory, and then running the [`dotnet test` command](https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-test) +Alternatively, most IDE's have built-in support for running tests, including [Visual Studio](https://docs.microsoft.com/en-us/visualstudio/test/run-unit-tests-with-test-explorer), [Rider](https://www.jetbrains.com/help/rider/Unit_Testing_in_Solution.html) and [Visual Studio code](https://github.com/OmniSharp/omnisharp-vscode/wiki/How-to-run-and-debug-unit-tests). +See the [tests page](https://exercism.org/docs/tracks/csharp/tests) for more information. + +## Skipped tests + +Initially, only the first test will be enabled. +This is to encourage you to solve the exercise one step at a time. +Once you get the first test passing, remove the `Skip` property from the next test and work on getting that test passing. + +## Submitting your solution + +You can submit your solution using the `exercism submit HelloWorld.cs` command. +This command will upload your solution to the Exercism website and print the solution page's URL. + +It's possible to submit an incomplete solution which allows you to: + +- See how others have completed the exercise +- Request help from a mentor + +## Need to get help? + +If you'd like help solving the exercise, check the following pages: + +- The [C# track's documentation](https://exercism.org/docs/tracks/csharp) +- The [C# track's programming category on the forum](https://forum.exercism.org/c/programming/csharp) +- [Exercism's programming category on the forum](https://forum.exercism.org/c/programming/5) +- The [Frequently Asked Questions](https://exercism.org/docs/using/faqs) + +Should those resources not suffice, you could submit your (incomplete) solution to request mentoring. + +To get help if you're having trouble, you can use one of the following resources: + +- [/r/csharp](https://www.reddit.com/r/csharp) is the C# subreddit. +- [StackOverflow](http://stackoverflow.com/questions/tagged/c%23) can be used to search for your problem and see if it has been answered already. You can also ask and answer questions. \ No newline at end of file diff --git a/csharp/hello-world/HelloWorld.cs b/csharp/hello-world/HelloWorld.cs new file mode 100644 index 0000000..5784ca4 --- /dev/null +++ b/csharp/hello-world/HelloWorld.cs @@ -0,0 +1,4 @@ +public static class HelloWorld +{ + public static string Hello() => "Hello, World!"; +} diff --git a/csharp/hello-world/HelloWorld.csproj b/csharp/hello-world/HelloWorld.csproj new file mode 100644 index 0000000..6cb2609 --- /dev/null +++ b/csharp/hello-world/HelloWorld.csproj @@ -0,0 +1,14 @@ + + + + net8.0 + + + + + + + + + + diff --git a/csharp/hello-world/HelloWorldTests.cs b/csharp/hello-world/HelloWorldTests.cs new file mode 100644 index 0000000..28767fa --- /dev/null +++ b/csharp/hello-world/HelloWorldTests.cs @@ -0,0 +1,10 @@ +using Xunit; + +public class HelloWorldTests +{ + [Fact] + public void Say_hi_() + { + Assert.Equal("Hello, World!", HelloWorld.Hello()); + } +} \ No newline at end of file diff --git a/csharp/hello-world/README.md b/csharp/hello-world/README.md new file mode 100644 index 0000000..bea7b81 --- /dev/null +++ b/csharp/hello-world/README.md @@ -0,0 +1,36 @@ +# Hello World + +Welcome to Hello World on Exercism's C# Track. +If you need help running the tests or submitting your code, check out `HELP.md`. + +## Instructions + +The classical introductory exercise. +Just say "Hello, World!". + +["Hello, World!"][hello-world] is the traditional first program for beginning programming in a new language or environment. + +The objectives are simple: + +- Modify the provided code so that it produces the string "Hello, World!". +- Run the test suite and make sure that it succeeds. +- Submit your solution and check it at the website. + +If everything goes well, you will be ready to fetch your first real exercise. + +[hello-world]: https://en.wikipedia.org/wiki/%22Hello,_world!%22_program + +## Source + +### Created by + +- @robkeim + +### Contributed to by + +- @ErikSchierboom +- @j2jensen + +### Based on + +This is an exercise to introduce users to using Exercism - https://en.wikipedia.org/wiki/%22Hello,_world!%22_program \ No newline at end of file