A small sandbox for trying out C#, F#, or general .NET snippets, testing ideas, and exploring features. This space is for experimentation, not polished production code.
- Minimal structure
- Quick experiments with the .NET SDK
- Space for isolated console apps
- Room for standalone .cs, .fs, or .vb files
- Can grow into multi-language .NET tests if needed
- Clone the repo
git clone https://github.com/QuantumJunction/DotNetPlayground.git
cd DotNetPlayground- Create a new console project
dotnet new console -o experiments/exp1- Run the project
dotnet run --project experiments/exp1/
├── experiments/ # Small .NET console apps or tests
│ ├── exp1/
│ │ └── Program.cs
│ └── exp2/
├── scratch/ # Standalone .cs / .fs / .vb files
├── utils/ # Reusable helpers
├── LICNESE
└── README.mdRun a project
dotnet run --project experiments/<project>Run a standalone C# script (optional)
dotnet script scratch/<file>.csRun tests (if test projects exist)
dotnet test- Keep experiments isolated
- Remove anything that’s just noise
- Put reusable helpers into utils/