/* https://docs.frends.com/en/articles/5270981-code https://docs.frends.com/en/articles/2494654-available-namespaces-in-expressions using mscorlib; <-- mscorlib.dll not available in WSL */ using System.Diagnostics; using System.Dynamic; using Microsoft.CSharp.RuntimeBinder; using System.Xml; using System.Xml.Linq; using System.Data; using System.Linq; using Newtonsoft.Json; /* after: dotnet add package Newtonsoft.Json dotnet restore also see: https://www.nuget.org/packages/Newtonsoft.Json/ */ using Newtonsoft.Json.Linq; /* Console.WriteLine("Hello, World!"); */ internal class Program { private static void Main(string[] args) { JArray greeting = new JArray(); greeting.Add("Hello, world on "); greeting.Add(DateTime.Now.ToString("s")); Console.WriteLine(greeting.ToString()); Console.WriteLine(greeting[1]); } } // jatka mutkikkaampiin Linq olioihin? https://learn.microsoft.com/en-us/dotnet/core/tutorials/library-with-visual-studio-code