C#

C# tips and resources.

Project Specific Integrated Terminal in VS Code

In the project root, update .vscode\settings.json as follows.

{
  "terminal.integrated.defaultProfile.windows": "PowerShell"
}

Resources

Working with Lists

Suppose you have a List that you want to make another List from? This could be useful for an API when serializing Json from an object prior to sending it to a mobile app.