https://github.com/d-led/dotnet_core_playground
https://github.com/d-led/dotnet_core_playground
playground
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/d-led/dotnet_core_playground
- Owner: d-led
- License: unlicense
- Created: 2020-04-22T13:20:22.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-06-23T05:42:14.000Z (almost 4 years ago)
- Last Synced: 2025-04-11T23:40:39.339Z (about 1 year ago)
- Topics: playground
- Language: C#
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dotnet_core_playground
Purpose: try out .Net libraries and code snippets
## Run It
```
dotnet run
```
or in VSCode: Run/Debug
## Add dependencies
[Search for a package](https://www.nuget.org/packages) and add it to the project:
e.g.
```
dotnet add package Newtonsoft.Json
```
## Introspect Data
- Check out [Program.cs](Program.cs)
- debug in VSCode/other IDE or use the `.Dump()` extension method from the [ConsoleDump](https://github.com/cameronism/ConsoleDump) library.