https://github.com/potlitel/rockpaperscissors
Practical exercise of the following link : https://www.delftstack.com/es/howto/csharp/csharp-rock-paper-scissors/
https://github.com/potlitel/rockpaperscissors
csharp dotnet
Last synced: 3 months ago
JSON representation
Practical exercise of the following link : https://www.delftstack.com/es/howto/csharp/csharp-rock-paper-scissors/
- Host: GitHub
- URL: https://github.com/potlitel/rockpaperscissors
- Owner: potlitel
- Created: 2022-08-21T11:30:34.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-08-22T00:21:08.000Z (over 2 years ago)
- Last Synced: 2025-01-16T07:31:18.852Z (4 months ago)
- Topics: csharp, dotnet
- Language: C#
- Homepage:
- Size: 233 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![]()
Rock Paper Scissors: A classic game - .Net Core
project_description
Explore the docs »
View Demo
·
Report Bug
·
Request Feature
Table of Contents
## About The Project
Here's a blank template to get started: To avoid retyping too much info. Do a search and replace with your text editor for the following: `github_username`, `repo_name`, `twitter_handle`, `linkedin_username`, `email_client`, `email`, `project_title`, `project_description`
### Built With
* [Dotnet 6.0](https://dotnet.microsoft.com/en-us/download/dotnet/6.0)
## Getting Started
This repo is a rich clone of [Creating a REST Web API in C# with ASP.NET Core 5.0 and Visual Studio Code](https://luis-hernandez.medium.com/creating-a-rest-web-api-in-c-with-asp-net-core-5-0-and-visual-studio-code-809ea7b4f815). Is an step-by-step guide to show you how to create a REST Web API in C# with ASP.NET Core 5.0 and Visual Studio Code. And how test it using either Swagger or a REST Client extension..
### Prerequisites
1. First you need to check if you have installed the .NET Core 6.0 SDK with the following .NET CLI (Command-Line Interface) command:
```sh
dotnet --version
```
If your version is not 5 or above, [download the .NET Core 6.0 SDK](https://dotnet.microsoft.com/en-us/download/dotnet/6.0) and install it on your machine.2. Install Visual Studio Code editor (also know as VSCode).
3. Once Visual Studio Code is open, install the REST Client extension.
4. Finally, install the C# extension to get IntelliSense features in VSCode.
### Installation
1. Clone the repo
```sh
git clone https://github.com/potlitel/RockPaperScissors.git
```
2. Running the project
```js
dotnet watch run
```## Usage
Use this space to show useful examples of how a project can be used. Additional screenshots, code examples and demos work well in this space. You may also link to more resources.
_For more examples, please refer to the [Documentation](https://example.com)_
## Roadmap
- [ ] Feature 1
- [ ] Feature 2
- [ ] Feature 3
- [ ] Nested FeatureSee the [open issues](https://github.com/github_username/repo_name/issues) for a full list of proposed features (and known issues).
## Contributing
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement".
Don't forget to give the project a star! Thanks again!1. Fork the Project
2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
4. Push to the Branch (`git push origin feature/AmazingFeature`)
5. Open a Pull Request## License
Distributed under the MIT License. See `LICENSE.txt` for more information.
## Contact
Your Name - [@twitter_handle](https://twitter.com/potlitel) - [email protected]
Project Link: [https://github.com/potlitel/RockPaperScissors](https://github.com/potlitel/RockPaperScissors)
## Acknowledgments
List of resources I find helpful and would like to give credit to. I've included a few of my favorites to kick things off!
* [How do I select a random value from an enumeration?](https://stackoverflow.com/questions/3132126/how-do-i-select-a-random-value-from-an-enumeration)
* [Enum.TryParse Method](https://docs.microsoft.com/en-us/dotnet/api/system.enum.tryparse?view=netframework-4.7.2#code-try-9)
* [C# enum using switch statement - how to use user input](https://stackoverflow.com/questions/54720336/c-sharp-enum-using-switch-statement-how-to-use-user-input)
* [Tutorial: Create a .NET console application using Visual Studio Code](https://docs.microsoft.com/en-us/dotnet/core/tutorials/with-visual-studio-code?pivots=dotnet-6-0)
* [Crear juego de piedra, papel o tijera en C#](https://www.delftstack.com/es/howto/csharp/csharp-rock-paper-scissors/)
* [Juego "Piedra, papel o tijera" usuario vs ordenador.](https://algoritmosurgentes.com/algoritmo-en-lenguaje-c-sharp/piedra-papel-o-tijera)
* [Piedra papel o tijeras by Humberto](https://dotnetfiddle.net/E1Ispm)
* [Check is the input in Enum](https://stackoverflow.com/questions/59235134/check-is-the-input-in-enum)
* [How do I match a user input string to anything and everything that means localhost?](https://stackoverflow.com/questions/25687845/how-do-i-match-a-user-input-string-to-anything-and-everything-that-means-localho)
* [Is there a way to match user input string to string in a list and return the index?](https://stackoverflow.com/questions/70400425/is-there-a-way-to-match-user-input-string-to-string-in-a-list-and-return-the-ind)
* [A Good Question](https://codeasy.net/lesson/input_validation)
* [C# How to write emoji in console 🌟⭐🌟](https://www.sololearn.com/Discuss/1637053/c-how-to-write-emoji-in-console)
* [[C#] Enable unicode (UTF-16) in app](https://code.sololearn.com/cklUIcf7MPwG/?ref=app)
* [Novedades de C# 8: Pattern Matching](https://www.fixedbuffer.com/novedades-de-c8-pattern-matching/)
* [How to use C# pattern matching with tuples](https://stackoverflow.com/questions/63582128/how-to-use-c-sharp-pattern-matching-with-tuples)
* [Changing State with the Switch Expression (C# 8)](https://csharp.christiannagel.com/2019/09/03/swtichexpression/)
* [
Working With Default Interface Implementation In C# 8.0](https://www.c-sharpcorner.com/article/working-with-default-interface-implementation-in-c-sharp-8-0/)
* [
Working With Switch Expressions And Pattern Matching In C# 8.0](https://www.c-sharpcorner.com/article/working-with-switch-expressions-and-pattern-matching-in-c-sharp-8-0/)
* [Console.Clear Method](https://docs.microsoft.com/en-us/dotnet/api/system.console.clear?view=net-6.0)[contributors-shield]: https://img.shields.io/github/contributors/github_username/repo_name.svg?style=for-the-badge
[contributors-url]: https://github.com/github_username/repo_name/graphs/contributors
[forks-shield]: https://img.shields.io/github/forks/github_username/repo_name.svg?style=for-the-badge
[forks-url]: https://github.com/github_username/repo_name/network/members
[stars-shield]: https://img.shields.io/github/stars/github_username/repo_name.svg?style=for-the-badge
[stars-url]: https://github.com/github_username/repo_name/stargazers
[issues-shield]: https://img.shields.io/github/issues/github_username/repo_name.svg?style=for-the-badge
[issues-url]: https://github.com/github_username/repo_name/issues
[license-shield]: https://img.shields.io/github/license/github_username/repo_name.svg?style=for-the-badge
[license-url]: https://github.com/github_username/repo_name/blob/master/LICENSE.txt
[linkedin-shield]: https://img.shields.io/badge/-LinkedIn-black.svg?style=for-the-badge&logo=linkedin&colorB=555
[linkedin-url]: https://linkedin.com/in/linkedin_username
[product-screenshot]: images/screenshot.png